Config.in 422 B

12345678910111213141516
  1. config BR2_PACKAGE_SQLITE
  2. bool "sqlite"
  3. help
  4. SQLite is a small C library that implements a self-contained,
  5. embeddable, zero-configuration SQL database engine.
  6. http://www.sqlite.org/
  7. config BR2_PACKAGE_SQLITE_READLINE
  8. bool "Command-line editing"
  9. depends on BR2_PACKAGE_SQLITE
  10. select BR2_PACKAGE_NCURSES
  11. select BR2_PACKAGE_READLINE
  12. help
  13. Enable command-line editing. This requires ncurses and readline.