mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 23:24:31 +04:00
The full-text search engine version 3 (FTS3) and R*Tree (RTREE) modules are enabled by default in sqlite3; add config options which allow to disable these sqlite lib modules. Disabling FTS3 reduces the so file with 475KB while disabling RTREE reduces the so file with 121KB on x86 architecture. Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
19 lines
293 B
Plaintext
19 lines
293 B
Plaintext
menu "Configuration"
|
|
depends on PACKAGE_libsqlite3
|
|
|
|
config SQLITE_FTS3
|
|
bool
|
|
prompt "Enable FTS3"
|
|
help
|
|
"Enable support for full-text search version 3"
|
|
default y
|
|
|
|
config SQLITE_RTREE
|
|
bool
|
|
prompt "Enable RTREE"
|
|
help
|
|
"Enable support for the R*Tree index extension"
|
|
default y
|
|
|
|
endmenu
|