b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | menu "Configuration" |
2 | depends on PACKAGE_sqlite3-cli | ||||
3 | |||||
4 | choice | ||||
5 | prompt "Select command-line editing support" | ||||
6 | default SQLITE3_LIBEDIT | ||||
7 | |||||
8 | config SQLITE3_LIBEDIT | ||||
9 | bool "libedit" | ||||
10 | help | ||||
11 | Link against libedit. This is the default. | ||||
12 | |||||
13 | config SQLITE3_READLINE | ||||
14 | bool "readline" | ||||
15 | help | ||||
16 | Link against GNU readline. | ||||
17 | |||||
18 | config SQLITE3_READLINE_NONE | ||||
19 | bool "none" | ||||
20 | help | ||||
21 | Disable command-line editing support. | ||||
22 | |||||
23 | endchoice | ||||
24 | endmenu |