Fix typo in 9b54bd30006c008b4a951331b273613d5bac3abf
[pm.git] / db / sqlite3 / src / moz.build
blob930eb00e333d94524c96b6e08633a46e5c136d72
1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 NO_VISIBILITY_FLAGS = True
8 EXPORTS += [
9     'sqlite3.h',
12 if CONFIG['MOZ_FOLD_LIBS']:
13     # When folding libraries, sqlite is actually in the nss library.
14     FINAL_LIBRARY = 'nss'
15 else:
16     # The final library is in config/external/sqlite
17     FINAL_LIBRARY = 'sqlite'
19 SOURCES += [
20     'sqlite3.c',
23 # -DSQLITE_SECURE_DELETE=1 will cause SQLITE to 0-fill delete data so we
24 # don't have to vacuum to make sure the data is not visible in the file.
25 # -DSQLITE_ENABLE_FTS3=1 enables the full-text index module.
26 # -DSQLITE_CORE=1 statically links that module into the SQLite library.
27 # -DSQLITE_DEFAULT_PAGE_SIZE=32768 and SQLITE_MAX_DEFAULT_PAGE_SIZE=32768
28 # increases the page size from 1k, see bug 416330.  It must be kept in sync with
29 # the value of PREF_TS_PAGESIZE_DEFAULT in mozStorageService.cpp.  The value can
30 # be overridden on a per-platform basis through the use of the PREF_TS_PAGESIZE
31 # hidden preference.  If that preference is missing or invalid then this value
32 # will be used.
33 # -DSQLITE_MAX_SCHEMA_RETRY increases the times SQLite may try to reparse
34 # statements when the schema changes. This is important when supporting lots of
35 # concurrent connections, especially when they use shared cache.
36 # Note: Be sure to update the configure.in checks when these change!
37 for var in ('SQLITE_SECURE_DELETE', 'SQLITE_THREADSAFE', 'SQLITE_CORE',
38             'SQLITE_ENABLE_FTS3', 'SQLITE_ENABLE_UNLOCK_NOTIFY'):
39     DEFINES[var] = 1
41 DEFINES['SQLITE_DEFAULT_PAGE_SIZE'] = 32768
42 DEFINES['SQLITE_MAX_DEFAULT_PAGE_SIZE'] = 32768
43 DEFINES['SQLITE_MAX_SCHEMA_RETRY'] = 25
44 DEFINES['SQLITE_ENABLE_FTS3_TOKENIZER'] = 1
46 # -DSQLITE_WIN32_GETVERSIONEX=0 avoids using deprecated functions.
47 # SQLite will just assume we are running on NT kinds of Windows. That's fine
48 # because we don't support Win9x.
49 if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
50     DEFINES['SQLITE_WIN32_GETVERSIONEX'] = 0
52 # -DSQLITE_ENABLE_LOCKING_STYLE=1 to help with AFP folders
53 if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
54     DEFINES['SQLITE_ENABLE_LOCKING_STYLE'] = 1
56 # Turn on SQLite's assertions in debug builds.
57 if CONFIG['MOZ_DEBUG']:
58     DEFINES['SQLITE_DEBUG'] = 1
60 if CONFIG['OS_TARGET'] == 'Android':
61     # default to user readable only to fit Android security model
62     DEFINES['SQLITE_DEFAULT_FILE_PERMISSIONS'] = '0600'
64 # Force using malloc_usable_size when building with jemalloc because _msize
65 # causes assertions on Win64. See bug 719579.
66 if CONFIG['OS_ARCH'] == 'WINNT' and CONFIG['MOZ_MEMORY']:
67     DEFINES['HAVE_MALLOC_USABLE_SIZE'] = True
68     DEFINES['SQLITE_WITHOUT_MSIZE'] = True
70 # disable PGO for Sun Studio
71 if CONFIG['SOLARIS_SUNPRO_CC']:
72     NO_PGO = True
74 # Suppress warnings in third-party code.
75 if CONFIG['GNU_CC']:
76     CFLAGS += [
77         '-Wno-sign-compare',
78         '-Wno-type-limits',
79     ]