Config.in 899 B

12345678910111213141516171819202122232425262728
  1. config BR2_PACKAGE_SQLCIPHER
  2. bool "sqlcipher"
  3. depends on !BR2_PACKAGE_SQLITE
  4. select BR2_PACKAGE_OPENSSL
  5. help
  6. SQLCipher is an SQLite extension that provides 256 bits AES
  7. encryption of database files. Note that it is a fork of SQLite
  8. and they cannot be installed side-by-side.
  9. http://sqlcipher.net
  10. config BR2_PACKAGE_SQLCIPHER_READLINE
  11. bool "Command-line editing"
  12. depends on BR2_PACKAGE_SQLCIPHER
  13. select BR2_PACKAGE_NCURSES
  14. select BR2_PACKAGE_READLINE
  15. help
  16. Enable command-line editing. This requires ncurses and readline.
  17. config BR2_PACKAGE_SQLCIPHER_STAT3
  18. bool "Additional query optimizations (stat3)"
  19. depends on BR2_PACKAGE_SQLCIPHER
  20. help
  21. Adds additional logic to the ANALYZE command and to the query
  22. planner that can help SQLite to choose a better query plan under
  23. certain situations.
  24. comment "sqlcipher conflicts with sqlite"
  25. depends on BR2_PACKAGE_SQLITE