Config.in 695 B

123456789101112131415161718192021222324
  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.
  14. config BR2_PACKAGE_SQLITE_STAT3
  15. bool "Additional query optimizations (stat3)"
  16. depends on BR2_PACKAGE_SQLITE
  17. help
  18. Adds additional logic to the ANALYZE command and to the query
  19. planner that can help SQLite to choose a better query plan under
  20. certain situations.