summaryrefslogtreecommitdiffstats
path: root/rules/sqlite.in
blob: 9e7e94af02cdb1fb03ece6d453c46933853fffce (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
## SECTION=system_libraries
menuconfig SQLITE
	tristate
	prompt "sqlite                        "
	select LIBC_DL
	select LIBC_PTHREAD	if SQLITE_THREADSAFE
	select GCCLIBS_GCC_S
	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.

if SQLITE

comment "build options"

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

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

comment "install options"

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

endif