Fix patch file.

Remove stuff that isn't in the crate archive.

Bug: http://b/339424309
Test: treehugger
Change-Id: Ibb0a467162fe783095ecd5900424a1b21499ba30
diff --git a/patches/delete_c_library.patch b/patches/delete_c_library.patch
index 199d484..9ea1f52 100644
--- a/patches/delete_c_library.patch
+++ b/patches/delete_c_library.patch
@@ -16245,774 +16245,6 @@
 -$as_echo "cxx                : ${enable_cxx}" >&6; }
 -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ===============================================================================" >&5
 -$as_echo "===============================================================================" >&6; }
-diff --git a/jemalloc/.appveyor.yml b/jemalloc/.appveyor.yml
-deleted file mode 100644
-index d31f9ae..0000000
---- a/jemalloc/.appveyor.yml
-+++ /dev/null
-@@ -1,41 +0,0 @@
--version: '{build}'
--
--environment:
--  matrix:
--  - MSYSTEM: MINGW64
--    CPU: x86_64
--    MSVC: amd64
--    CONFIG_FLAGS: --enable-debug
--  - MSYSTEM: MINGW64
--    CPU: x86_64
--    CONFIG_FLAGS: --enable-debug
--  - MSYSTEM: MINGW32
--    CPU: i686
--    MSVC: x86
--    CONFIG_FLAGS: --enable-debug
--  - MSYSTEM: MINGW32
--    CPU: i686
--    CONFIG_FLAGS: --enable-debug
--  - MSYSTEM: MINGW64
--    CPU: x86_64
--    MSVC: amd64
--  - MSYSTEM: MINGW64
--    CPU: x86_64
--  - MSYSTEM: MINGW32
--    CPU: i686
--    MSVC: x86
--  - MSYSTEM: MINGW32
--    CPU: i686
--
--install:
--  - set PATH=c:\msys64\%MSYSTEM%\bin;c:\msys64\usr\bin;%PATH%
--  - if defined MSVC call "c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %MSVC%
--  - if defined MSVC pacman --noconfirm -Rsc mingw-w64-%CPU%-gcc gcc
--
--build_script:
--  - bash -c "autoconf"
--  - bash -c "./configure $CONFIG_FLAGS"
--  - mingw32-make
--  - file lib/jemalloc.dll
--  - mingw32-make tests
--  - mingw32-make -k check
-diff --git a/jemalloc/.autom4te.cfg b/jemalloc/.autom4te.cfg
-deleted file mode 100644
-index fe2424d..0000000
---- a/jemalloc/.autom4te.cfg
-+++ /dev/null
-@@ -1,3 +0,0 @@
--begin-language: "Autoconf-without-aclocal-m4"
--args: --no-cache
--end-language: "Autoconf-without-aclocal-m4"
-diff --git a/jemalloc/.cirrus.yml b/jemalloc/.cirrus.yml
-deleted file mode 100644
-index 7569539..0000000
---- a/jemalloc/.cirrus.yml
-+++ /dev/null
-@@ -1,46 +0,0 @@
--env:
--  CIRRUS_CLONE_DEPTH: 1
--  ARCH: amd64
--
--task:
--  matrix:
--      env:
--        DEBUG_CONFIG: --enable-debug
--      env:
--        DEBUG_CONFIG: --disable-debug
--  matrix:
--    - env:
--        PROF_CONFIG: --enable-prof
--    - env:
--        PROF_CONFIG: --disable-prof
--  matrix:
--    - name: 64-bit
--      env:
--        CC:
--        CXX:
--    - name: 32-bit
--      env:
--        CC: cc -m32
--        CXX: c++ -m32
--  matrix:
--    - env:
--        UNCOMMON_CONFIG:
--    - env:
--        UNCOMMON_CONFIG: --with-lg-page=16 --with-malloc-conf=tcache:false
--  freebsd_instance:
--    matrix:
--      image: freebsd-12-3-release-amd64
--  install_script:
--    - sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
--    - pkg upgrade -y
--    - pkg install -y autoconf gmake
--  script:
--    - autoconf
--    # We don't perfectly track freebsd stdlib.h definitions.  This is fine when
--    # we count as a system header, but breaks otherwise, like during these
--    # tests.
--    - ./configure --with-jemalloc-prefix=ci_ ${DEBUG_CONFIG} ${PROF_CONFIG} ${UNCOMMON_CONFIG}
--    - export JFLAG=`sysctl -n kern.smp.cpus`
--    - gmake -j${JFLAG}
--    - gmake -j${JFLAG} tests
--    - gmake check
-diff --git a/jemalloc/.clang-format b/jemalloc/.clang-format
-deleted file mode 100644
-index 719c03c..0000000
---- a/jemalloc/.clang-format
-+++ /dev/null
-@@ -1,122 +0,0 @@
--# jemalloc targets clang-format version 8.  We include every option it supports
--# here, but comment out the ones that aren't relevant for us.
-----
--# AccessModifierOffset: -2
--AlignAfterOpenBracket: DontAlign
--AlignConsecutiveAssignments: false
--AlignConsecutiveDeclarations: false
--AlignEscapedNewlines: Right
--AlignOperands: false
--AlignTrailingComments: false
--AllowAllParametersOfDeclarationOnNextLine: true
--AllowShortBlocksOnASingleLine: false
--AllowShortCaseLabelsOnASingleLine: false
--AllowShortFunctionsOnASingleLine: Empty
--AllowShortIfStatementsOnASingleLine: false
--AllowShortLoopsOnASingleLine: false
--AlwaysBreakAfterReturnType: AllDefinitions
--AlwaysBreakBeforeMultilineStrings: true
--# AlwaysBreakTemplateDeclarations: Yes
--BinPackArguments: true
--BinPackParameters: true
--BraceWrapping:
--  AfterClass: false
--  AfterControlStatement: false
--  AfterEnum: false
--  AfterFunction: false
--  AfterNamespace: false
--  AfterObjCDeclaration: false
--  AfterStruct: false
--  AfterUnion: false
--  BeforeCatch: false
--  BeforeElse: false
--  IndentBraces: false
--# BreakAfterJavaFieldAnnotations: true
--BreakBeforeBinaryOperators: NonAssignment
--BreakBeforeBraces: Attach
--BreakBeforeTernaryOperators: true
--# BreakConstructorInitializers: BeforeColon
--# BreakInheritanceList: BeforeColon
--BreakStringLiterals: false
--ColumnLimit: 80
--# CommentPragmas: ''
--# CompactNamespaces: true
--# ConstructorInitializerAllOnOneLineOrOnePerLine: true
--# ConstructorInitializerIndentWidth: 4
--ContinuationIndentWidth: 2
--Cpp11BracedListStyle: true
--DerivePointerAlignment: false
--DisableFormat:   false
--ExperimentalAutoDetectBinPacking: false
--FixNamespaceComments: true
--ForEachMacros:   [ ql_foreach, qr_foreach, ]
--# IncludeBlocks: Preserve
--# IncludeCategories:
--#   - Regex:           '^<.*\.h(pp)?>'
--#     Priority:        1
--# IncludeIsMainRegex: ''
--IndentCaseLabels: false
--IndentPPDirectives: AfterHash
--IndentWidth: 4
--IndentWrappedFunctionNames: false
--# JavaImportGroups: []
--# JavaScriptQuotes: Leave
--# JavaScriptWrapImports: True
--KeepEmptyLinesAtTheStartOfBlocks: false
--Language: Cpp
--MacroBlockBegin: ''
--MacroBlockEnd: ''
--MaxEmptyLinesToKeep: 1
--# NamespaceIndentation: None
--# ObjCBinPackProtocolList: Auto
--# ObjCBlockIndentWidth: 2
--# ObjCSpaceAfterProperty: false
--# ObjCSpaceBeforeProtocolList: false
--
--PenaltyBreakAssignment: 2
--PenaltyBreakBeforeFirstCallParameter: 1
--PenaltyBreakComment: 300
--PenaltyBreakFirstLessLess: 120
--PenaltyBreakString: 1000
--# PenaltyBreakTemplateDeclaration: 10
--PenaltyExcessCharacter: 1000000
--PenaltyReturnTypeOnItsOwnLine: 60
--PointerAlignment: Right
--# RawStringFormats:
--#   - Language: TextProto
--#       Delimiters:
--#         - 'pb'
--#         - 'proto'
--#       EnclosingFunctions:
--#         - 'PARSE_TEXT_PROTO'
--#       BasedOnStyle: google
--#   - Language: Cpp
--#       Delimiters:
--#         - 'cc'
--#         - 'cpp'
--#       BasedOnStyle: llvm
--#       CanonicalDelimiter: 'cc'
--ReflowComments: true
--SortIncludes: false
--SpaceAfterCStyleCast: false
--# SpaceAfterTemplateKeyword: true
--SpaceBeforeAssignmentOperators: true
--# SpaceBeforeCpp11BracedList: false
--# SpaceBeforeCtorInitializerColon: true
--# SpaceBeforeInheritanceColon: true
--SpaceBeforeParens: ControlStatements
--# SpaceBeforeRangeBasedForLoopColon: true
--SpaceInEmptyParentheses: false
--SpacesBeforeTrailingComments: 2
--SpacesInAngles:  false
--SpacesInCStyleCastParentheses: false
--# SpacesInContainerLiterals: false
--SpacesInParentheses: false
--SpacesInSquareBrackets: false
--# Standard: Cpp11
--# This is nominally supported in clang-format version 8, but not in the build
--# used by some of the core jemalloc developers.
--# StatementMacros: []
--TabWidth: 8
--UseTab: Never
--...
-diff --git a/jemalloc/.gitattributes b/jemalloc/.gitattributes
-deleted file mode 100644
-index 6313b56..0000000
---- a/jemalloc/.gitattributes
-+++ /dev/null
-@@ -1 +0,0 @@
--* text=auto eol=lf
-diff --git a/jemalloc/.gitignore b/jemalloc/.gitignore
-deleted file mode 100644
-index 1c0b338..0000000
---- a/jemalloc/.gitignore
-+++ /dev/null
-@@ -1,100 +0,0 @@
--/bin/jemalloc-config
--/bin/jemalloc.sh
--/bin/jeprof
--
--/config.stamp
--/config.log
--/config.status
--/configure
--
--/doc/html.xsl
--/doc/manpages.xsl
--/doc/jemalloc.xml
--/doc/jemalloc.html
--/doc/jemalloc.3
--
--/doc_internal/PROFILING_INTERNALS.pdf
--
--/jemalloc.pc
--
--/lib/
--
--/Makefile
--
--/include/jemalloc/internal/jemalloc_preamble.h
--/include/jemalloc/internal/jemalloc_internal_defs.h
--/include/jemalloc/internal/private_namespace.gen.h
--/include/jemalloc/internal/private_namespace.h
--/include/jemalloc/internal/private_namespace_jet.gen.h
--/include/jemalloc/internal/private_namespace_jet.h
--/include/jemalloc/internal/private_symbols.awk
--/include/jemalloc/internal/private_symbols_jet.awk
--/include/jemalloc/internal/public_namespace.h
--/include/jemalloc/internal/public_symbols.txt
--/include/jemalloc/internal/public_unnamespace.h
--/include/jemalloc/jemalloc.h
--/include/jemalloc/jemalloc_defs.h
--/include/jemalloc/jemalloc_macros.h
--/include/jemalloc/jemalloc_mangle.h
--/include/jemalloc/jemalloc_mangle_jet.h
--/include/jemalloc/jemalloc_protos.h
--/include/jemalloc/jemalloc_protos_jet.h
--/include/jemalloc/jemalloc_rename.h
--/include/jemalloc/jemalloc_typedefs.h
--
--/src/*.[od]
--/src/*.sym
--
--/run_tests.out/
--
--/test/test.sh
--test/include/test/jemalloc_test.h
--test/include/test/jemalloc_test_defs.h
--
--/test/integration/[A-Za-z]*
--!/test/integration/cpp/
--!/test/integration/[A-Za-z]*.*
--/test/integration/*.[od]
--/test/integration/*.out
--
--/test/integration/cpp/[A-Za-z]*
--!/test/integration/cpp/[A-Za-z]*.*
--/test/integration/cpp/*.[od]
--/test/integration/cpp/*.out
--
--/test/src/*.[od]
--
--/test/stress/[A-Za-z]*
--!/test/stress/[A-Za-z]*.*
--/test/stress/*.[od]
--/test/stress/*.out
--
--/test/unit/[A-Za-z]*
--!/test/unit/[A-Za-z]*.*
--/test/unit/*.[od]
--/test/unit/*.out
--
--/test/analyze/[A-Za-z]*
--!/test/analyze/[A-Za-z]*.*
--/test/analyze/*.[od]
--/test/analyze/*.out
--
--/VERSION
--
--*.pdb
--*.sdf
--*.opendb
--*.VC.db
--*.opensdf
--*.cachefile
--*.suo
--*.user
--*.sln.docstates
--*.tmp
--.vs/
--/msvc/Win32/
--/msvc/x64/
--/msvc/projects/*/*/Debug*/
--/msvc/projects/*/*/Release*/
--/msvc/projects/*/*/Win32/
--/msvc/projects/*/*/x64/
-diff --git a/jemalloc/.travis.yml b/jemalloc/.travis.yml
-deleted file mode 100644
-index bf44fad..0000000
---- a/jemalloc/.travis.yml
-+++ /dev/null
-@@ -1,413 +0,0 @@
--# This config file is generated by ./scripts/gen_travis.py.
--# Do not edit by hand.
--
--# We use 'minimal', because 'generic' makes Windows VMs hang at startup. Also
--# the software provided by 'generic' is simply not needed for our tests.
--# Differences are explained here:
--# https://docs.travis-ci.com/user/languages/minimal-and-generic/
--language: minimal
--dist: focal
--
--jobs:
--  include:
--    - os: windows
--      arch: amd64
--      env: CC=gcc CXX=g++ EXTRA_CFLAGS="-fcommon"
--    - os: windows
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-fcommon"
--    - os: windows
--      arch: amd64
--      env: CC=cl.exe CXX=cl.exe
--    - os: windows
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes EXTRA_CFLAGS="-fcommon"
--    - os: windows
--      arch: amd64
--      env: CC=cl.exe CXX=cl.exe CONFIGURE_FLAGS="--enable-debug"
--    - os: windows
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-fcommon"
--    - os: windows
--      arch: amd64
--      env: CC=cl.exe CXX=cl.exe CROSS_COMPILE_32BIT=yes
--    - os: windows
--      arch: amd64
--      env: CC=cl.exe CXX=cl.exe CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-debug"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --enable-prof-libunwind"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --enable-prof --enable-prof-libunwind"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-debug"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --enable-prof-libunwind --with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-prof --enable-prof-libunwind"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --enable-prof --enable-prof-libunwind --with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-debug --enable-prof --enable-prof-libunwind"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-debug --with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-prof --enable-prof-libunwind --with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: freebsd
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes CONFIGURE_FLAGS="--enable-debug --enable-prof --enable-prof-libunwind --with-lg-page=16 --with-malloc-conf=tcache:false"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=clang CXX=clang++ CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof --with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats --with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl --enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl --with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl --with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl --with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl --with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl --with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks --with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks --with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks --with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks --with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks --with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16 --with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16 --with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16 --with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16 --with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false,dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false,percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false,background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=dss:primary,percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=dss:primary,background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu,background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=dss:primary" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=percpu_arena:percpu" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: linux
--      arch: ppc64le
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=background_thread:true" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CROSS_COMPILE_32BIT=yes EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-stats" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--disable-libdl" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-opt-safety-checks" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-lg-page=16" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    - os: osx
--      arch: amd64
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--with-malloc-conf=tcache:false" EXTRA_CFLAGS="-Werror -Wno-array-bounds -Wno-unknown-warning-option -Wno-ignored-attributes -Wno-deprecated-declarations"
--    # Development build
--    - os: linux
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --disable-cache-oblivious --enable-stats --enable-log --enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--    # --enable-expermental-smallocx:
--    - os: linux
--      env: CC=gcc CXX=g++ CONFIGURE_FLAGS="--enable-debug --enable-experimental-smallocx --enable-stats --enable-prof" EXTRA_CFLAGS="-Werror -Wno-array-bounds"
--
--
--before_install:
--  - |-
--    if test -f "./scripts/$TRAVIS_OS_NAME/before_install.sh"; then
--      source ./scripts/$TRAVIS_OS_NAME/before_install.sh
--    fi
--
--before_script:
--  - |-
--    if test -f "./scripts/$TRAVIS_OS_NAME/before_script.sh"; then
--      source ./scripts/$TRAVIS_OS_NAME/before_script.sh
--    else
--      scripts/gen_travis.py > travis_script && diff .travis.yml travis_script
--      autoconf
--      # If COMPILER_FLAGS are not empty, add them to CC and CXX
--      ./configure ${COMPILER_FLAGS:+ CC="$CC $COMPILER_FLAGS" CXX="$CXX $COMPILER_FLAGS"} $CONFIGURE_FLAGS
--      make -j3
--      make -j3 tests
--    fi
--
--script:
--  - |-
--    if test -f "./scripts/$TRAVIS_OS_NAME/script.sh"; then
--      source ./scripts/$TRAVIS_OS_NAME/script.sh
--    else
--      make check
--    fi
--
 diff --git a/jemalloc/COPYING b/jemalloc/COPYING
 deleted file mode 100644
 index 3b7fd35..0000000