diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-27 13:56:47 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-27 13:56:47 +0200 |
commit | 077c63084488ac38c1c44e8cdaa9c33086f0a649 (patch) | |
tree | c528abc8ae8570e66fecb123a9a1e821993f1f27 /memory/build/moz.build | |
parent | be1786f7b0e692d8f4326dbf53e7d0689813ee2d (diff) | |
download | UXP-077c63084488ac38c1c44e8cdaa9c33086f0a649.tar UXP-077c63084488ac38c1c44e8cdaa9c33086f0a649.tar.gz UXP-077c63084488ac38c1c44e8cdaa9c33086f0a649.tar.lz UXP-077c63084488ac38c1c44e8cdaa9c33086f0a649.tar.xz UXP-077c63084488ac38c1c44e8cdaa9c33086f0a649.zip |
Remove support for making jemalloc4 the default memory allocator.
Diffstat (limited to 'memory/build/moz.build')
-rw-r--r-- | memory/build/moz.build | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/memory/build/moz.build b/memory/build/moz.build index bd6c2503e..f4fd82878 100644 --- a/memory/build/moz.build +++ b/memory/build/moz.build @@ -24,16 +24,6 @@ SOURCES += [ 'mozmemory_wrap.c', ] -if CONFIG['MOZ_JEMALLOC4']: - SOURCES += [ - 'mozjemalloc_compat.c', - ] - LOCAL_INCLUDES += ['!../jemalloc/src/include'] - if CONFIG['_MSC_VER']: - LOCAL_INCLUDES += ['/memory/jemalloc/src/include/msvc_compat'] - if not CONFIG['HAVE_INTTYPES_H']: - LOCAL_INCLUDES += ['/memory/jemalloc/src/include/msvc_compat/C99'] - if CONFIG['MOZ_REPLACE_MALLOC']: SOURCES += [ 'replace_malloc.c', @@ -49,6 +39,3 @@ if CONFIG['MOZ_GLUE_IN_PROGRAM']: if CONFIG['MOZ_MEMORY'] and CONFIG['OS_TARGET'] in ('WINNT', 'Darwin', 'Android'): FINAL_LIBRARY = 'mozglue' -if CONFIG['MOZ_REPLACE_MALLOC'] and CONFIG['OS_TARGET'] == 'Darwin': - # The zone allocator for OSX needs some jemalloc internal functions - LOCAL_INCLUDES += ['/memory/jemalloc/src/include'] |