summaryrefslogtreecommitdiffstats
path: root/rules/sqlite.in
blob: fe984b77246f3ed859d492fa17c13f0c8bf433ca (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
## SECTION=system_libraries
menuconfig SQLITE
	tristate
	prompt "sqlite                        "
	select LIBC_DL
	select TCL	if SQLITE_TCL
	select READLINE	if SQLITE_READLINE
	help
	  SQLite is a software library that implements a self-contained,
	  serverless, zero-configuration, transactional SQL database engine.
	  Note: This package needs a host tclsh to be built.

if SQLITE

comment "build options"

#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"


choice
	prompt "Temp. RAM storage"
	default SQLITE_TEMPSTORE_NEVER

	config SQLITE_TEMPSTORE_NEVER
		bool
		prompt "never"

	config SQLITE_TEMPSTORE_NO
		bool
		prompt "no"

	config SQLITE_TEMPSTORE_YES
		bool
		prompt "yes"

	config SQLITE_TEMPSTORE_ALWAYS
		bool
		prompt "always"

endchoice


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


config SQLITE_CROSS_THREAD_CONNECTIONS
	bool
	prompt "Thread connection sharing"
	help
	  Allow connection sharing across threads

config SQLITE_THREAD_OVERRIDE_LOCKS
	bool
	prompt "Thread override locks"
	help
	  Threads can override each others locks

config SQLITE_LOAD_EXTENTION
	bool
	prompt "external extensions"
	help
	  Enable loading of external extensions

config SQLITE_READLINE
	bool
	prompt "use readline"
	help
	  Enable readline support

config SQLITE_TCL
	bool
	prompt "build tcl extension"
	help
	  Build the TCL extension

comment "install options"

config SQLITE_TOOL
	bool
	prompt "install sqlite"
	help
	  Enable this entry to also install the 'sqlite' tool.

endif