2012-01-23 21:23:25 +01:00
|
|
|
config BR2_PACKAGE_SQLCIPHER
|
|
|
|
bool "sqlcipher"
|
|
|
|
depends on !BR2_PACKAGE_SQLITE
|
2013-10-05 20:29:56 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2012-01-23 21:23:25 +01:00
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
help
|
|
|
|
SQLCipher is an SQLite extension that provides 256 bits AES
|
|
|
|
encryption of database files. Note that it is a fork of SQLite
|
|
|
|
and they cannot be installed side-by-side.
|
2013-06-06 01:53:29 +02:00
|
|
|
|
2012-01-23 21:23:25 +01:00
|
|
|
http://sqlcipher.net
|
|
|
|
|
2013-11-07 09:24:37 +01:00
|
|
|
if BR2_PACKAGE_SQLCIPHER
|
|
|
|
|
2012-01-23 21:23:25 +01:00
|
|
|
config BR2_PACKAGE_SQLCIPHER_READLINE
|
|
|
|
bool "Command-line editing"
|
|
|
|
select BR2_PACKAGE_NCURSES
|
|
|
|
select BR2_PACKAGE_READLINE
|
|
|
|
help
|
|
|
|
Enable command-line editing. This requires ncurses and readline.
|
|
|
|
|
|
|
|
config BR2_PACKAGE_SQLCIPHER_STAT3
|
|
|
|
bool "Additional query optimizations (stat3)"
|
|
|
|
help
|
|
|
|
Adds additional logic to the ANALYZE command and to the query
|
|
|
|
planner that can help SQLite to choose a better query plan under
|
|
|
|
certain situations.
|
|
|
|
|
2013-11-07 09:24:37 +01:00
|
|
|
endif
|
|
|
|
|
2012-01-23 21:23:25 +01:00
|
|
|
comment "sqlcipher conflicts with sqlite"
|
|
|
|
depends on BR2_PACKAGE_SQLITE
|
2013-10-05 20:29:56 +02:00
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "sqlcipher needs a toolchain w/ threads"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on !BR2_PACKAGE_SQLITE
|
2013-10-05 20:29:56 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|