Config.in 1.0 KB

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