summaryrefslogtreecommitdiffstats
path: root/rules/sqlite.in
blob: d8abe35f1ee68d1759995c859cc0f91132290d78 (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
## SECTION=system_libraries
menuconfig SQLITE
	tristate
	prompt "sqlite                        "

if SQLITE	

choice
	prompt "Assume text encoding"
	default ISO8859

	config SQLITE_ISO8859
		bool
 		prompt "ISO8859"

	config SQLITE_UTF8
		bool
 		prompt "UTF-8"
endchoice

config SQLITE_DISABLE_LFS
	bool
	prompt "Disable large file support"

config SQLITE_THREADSAFE
	bool
	prompt "Safe for use within a multi-threaded program"

endif