aboutsummaryrefslogtreecommitdiff
path: root/libs/sqlite3/Config-lib.in
Commit message (Collapse)AuthorAge
* sqlite3: Update to 3.41.1Tianling Shen2023-03-14
| | | | | | Removed `SQLITE3_JSON1` option as it was dropped by upstream. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* sqlite3: Update to 3.40.0Tianling Shen2022-11-18
| | | | | | | | | 1. Added a new option for SQLITE3_COLUMN_METADATA. 2. Minor cleanup Makefile and fixed 2 typo errors. Fixes: CVE-2022-35737 Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* sqlite3: add option for batch-atomic write supportJan Hoffmann2021-02-26
| | | | | | | | | This allows to build SQLite with support for the batch-atomic write optimization. It makes use of atomic write support provided by the underlying file system. Currently, this is only supported on F2FS. It it does not work with overlayfs. Signed-off-by: Jan Hoffmann <jan@3e8.eu>
* sqlite3: always build a thread-safe librarySebastian Kemper2019-05-23
| | | | | | | | | 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>
* 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>