aboutsummaryrefslogtreecommitdiff
path: root/libs/sqlite3/Config-cli.in
blob: 752db6e817cc233aa8b4e6328429631dbf984575 (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
menu "Configuration"
	depends on PACKAGE_sqlite3-cli

choice
	prompt "Select command-line editing support"
	default SQLITE3_LIBEDIT

	config SQLITE3_LIBEDIT
	bool "libedit"
	help
	  Link against libedit. This is the default.

	config SQLITE3_READLINE
	bool "readline"
	help
	  Link against GNU readline.

	config SQLITE3_READLINE_NONE
	bool "none"
	help
	  Disable command-line editing support.

endchoice
endmenu