diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-04-26 17:59:36 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-04-26 17:59:36 +0200 |
commit | be1786f7b0e692d8f4326dbf53e7d0689813ee2d (patch) | |
tree | cefa04b915833e90abf5bba51c5c6c81dc3c6431 /storage | |
parent | 698b659ee29fd84b02ac2632085d31caaef081e9 (diff) | |
download | uxp-be1786f7b0e692d8f4326dbf53e7d0689813ee2d.tar.gz |
Remove support for system jemalloc.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/moz.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/storage/moz.build b/storage/moz.build index 8863105c9d..216a1cf742 100644 --- a/storage/moz.build +++ b/storage/moz.build @@ -98,8 +98,7 @@ FINAL_LIBRARY = 'xul' # Note: On Windows our sqlite build assumes we use jemalloc. If you disable # MOZ_STORAGE_MEMORY on Windows, you will also need to change the "ifdef # MOZ_MEMORY" options in db/sqlite3/src/Makefile.in. -if CONFIG['MOZ_MEMORY'] and (not CONFIG['MOZ_SYSTEM_SQLITE'] - or CONFIG['MOZ_SYSTEM_JEMALLOC']): +if CONFIG['MOZ_MEMORY'] and not CONFIG['MOZ_SYSTEM_SQLITE']: if CONFIG['OS_TARGET'] != 'Android': DEFINES['MOZ_STORAGE_MEMORY'] = True |