diff options
Diffstat (limited to 'storage/moz.build')
-rw-r--r-- | storage/moz.build | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/storage/moz.build b/storage/moz.build index d1ad9229f1..02e421b4b2 100644 --- a/storage/moz.build +++ b/storage/moz.build @@ -84,15 +84,11 @@ include('/ipc/chromium/chromium-config.mozbuild') FINAL_LIBRARY = 'xul' -# Don't use the jemalloc allocator on Android, because we can't guarantee -# that Gecko will configure sqlite before it is first used (bug 730495). -# # 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']: - if CONFIG['OS_TARGET'] != 'Android': - DEFINES['MOZ_STORAGE_MEMORY'] = True + DEFINES['MOZ_STORAGE_MEMORY'] = True # This is the default value. If we ever change it when compiling sqlite, we # will need to change it here as well. |