aboutsummaryrefslogtreecommitdiff
path: root/libs/sqlite3/Config.in
Commit message (Collapse)AuthorAge
* sqlite3: add configure switches to menuselectSebastian Kemper2018-12-27
| | | | | | | | | | | | | | | | | Adds (most) configure switches to menuselect. The defaults are _not_ changed, meaning the default configuration itself remains the same. This enables changing the configuration through menuselect and adds flags that other packages may use. Config.in is renamed to Config-lib.in in anticipation of a future commit where the cli tool package also gets a file to source. The variables also get a prefix change from SQLITE to SQLITE3 in case there will be a new major release in the future that may coexist with sqlite3. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* sqlite3: add config options to disable FTS3 and RTREEHans Dedecker2018-01-31
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>