You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
414 B

  1. menu "Configuration"
  2. depends on PACKAGE_sqlite3-cli
  3. choice
  4. prompt "Select command-line editing support"
  5. default SQLITE3_LIBEDIT
  6. config SQLITE3_LIBEDIT
  7. bool "libedit"
  8. help
  9. Link against libedit. This is the default.
  10. config SQLITE3_READLINE
  11. bool "readline"
  12. help
  13. Link against GNU readline.
  14. config SQLITE3_READLINE_NONE
  15. bool "none"
  16. help
  17. Disable command-line editing support.
  18. endchoice
  19. endmenu