mirror of https://github.com/openwrt/packages.git
30 lines
630 B
Plaintext
30 lines
630 B
Plaintext
menu "Configuration"
|
|
depends on PACKAGE_sqlite3-cli
|
|
|
|
choice
|
|
prompt "Select command-line editing support"
|
|
default SQLITE3_LINENOISE
|
|
|
|
config SQLITE3_LINENOISE
|
|
bool "linenoise"
|
|
help
|
|
Build with linenoise. This is the default. Adds ~12k compared to the "none" variant
|
|
|
|
config SQLITE3_LIBEDIT
|
|
bool "libedit"
|
|
help
|
|
Link against libedit. Adds 4k + ~192k for libedit + ~341k for ncurses
|
|
|
|
config SQLITE3_READLINE
|
|
bool "readline"
|
|
help
|
|
Link against GNU readline. Adds 4k + ~333k for readline + ~341k for ncurses
|
|
|
|
config SQLITE3_READLINE_NONE
|
|
bool "none"
|
|
help
|
|
Disable command-line editing support.
|
|
|
|
endchoice
|
|
endmenu
|