aboutsummaryrefslogtreecommitdiff
path: root/libs/sqlite3/Config-lib.in
blob: bcf024aa6868865779e32a484d91c7e4971f8a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
menu "Configuration"
	depends on PACKAGE_libsqlite3

config SQLITE3_BATCH_ATOMIC_WRITE
	bool "Batch-atomic write support"
	default n
	help
	  Enable batch-atomic write optimization (supported only on F2FS).

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