25 lines
414 B
Text
25 lines
414 B
Text
|
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
|