Config.in 1.0 KB

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