Pull request #9033 showed that there are problems with builds where thread-safe mode is disabled. The binaries still reference functions from libpthread. This commit removes the thread-safe choice for now. Once this is addressed upstream the choice can be added back. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
47 lines
756 B
Text
47 lines
756 B
Text
menu "Configuration"
|
|
depends on PACKAGE_libsqlite3
|
|
|
|
config SQLITE3_DYNAMIC_EXTENSIONS
|
|
bool "Dynamic extensions"
|
|
default y
|
|
help
|
|
Enable loadable extensions.
|
|
|
|
config SQLITE3_FTS3
|
|
bool "FTS3 support"
|
|
default y
|
|
help
|
|
Enable FTS3 support.
|
|
|
|
config SQLITE3_FTS4
|
|
bool "FTS4 support"
|
|
depends on SQLITE3_FTS3
|
|
default y
|
|
help
|
|
Enable FTS4 support.
|
|
|
|
config SQLITE3_FTS5
|
|
bool "FTS5 support"
|
|
default y
|
|
help
|
|
Enable FTS5 support.
|
|
|
|
config SQLITE3_JSON1
|
|
bool "JSON1 extension"
|
|
default y
|
|
help
|
|
Include JSON1 support. This is the default.
|
|
|
|
config SQLITE3_RTREE
|
|
bool "R-Tree support"
|
|
default y
|
|
help
|
|
Enable R-Tree support.
|
|
|
|
config SQLITE3_SESSION
|
|
bool "Session extension"
|
|
default n
|
|
help
|
|
Enable the session extension (default no).
|
|
|
|
endmenu
|