diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-31 15:40:09 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-31 15:40:09 +0100 |
commit | d41ba28f5257f7c1425a0bde210e69fc5bb34a37 (patch) | |
tree | 229b340173919d85b06ef878899034cdb7b28a0f /storage | |
parent | 8f89965f5062f9855cdcc20530a815746fce744c (diff) | |
download | uxp-d41ba28f5257f7c1425a0bde210e69fc5bb34a37.tar.gz |
Issue #1342 - Remove support for system sqlite
Diffstat (limited to 'storage')
-rw-r--r-- | storage/SQLiteMutex.h | 2 | ||||
-rw-r--r-- | storage/moz.build | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/storage/SQLiteMutex.h b/storage/SQLiteMutex.h index a38525fd6d..eaa69eab1f 100644 --- a/storage/SQLiteMutex.h +++ b/storage/SQLiteMutex.h @@ -50,7 +50,7 @@ public: mMutex = aMutex; } -#if !defined(DEBUG) || defined(MOZ_SYSTEM_SQLITE) +#if !defined(DEBUG) /** * Acquires the mutex. */ diff --git a/storage/moz.build b/storage/moz.build index 5ccfabd715..2d30a85eca 100644 --- a/storage/moz.build +++ b/storage/moz.build @@ -100,10 +100,6 @@ if CONFIG['MOZ_MEMORY']: DEFINES['SQLITE_MAX_LIKE_PATTERN_LENGTH'] = 50000 # See Sqlite moz.build for reasoning about TEMP_STORE. -# For system sqlite we cannot use the compile time option, so we use a pragma. -if CONFIG['MOZ_SYSTEM_SQLITE'] and (CONFIG['OS_TARGET'] == 'Android' - or CONFIG['HAVE_64BIT_BUILD']): - DEFINES['MOZ_MEMORY_TEMP_STORE_PRAGMA'] = True LOCAL_INCLUDES += [ '/db/sqlite3/src', |