Config.in 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. if BR2_PACKAGE_SQLITE
  8. config BR2_PACKAGE_SQLITE_STAT3
  9. bool "Additional query optimizations (stat3)"
  10. help
  11. Adds additional logic to the ANALYZE command and to the query
  12. planner that can help SQLite to choose a better query plan under
  13. certain situations.
  14. config BR2_PACKAGE_SQLITE_ENABLE_FTS3
  15. bool "Enable version 3 of the full-text search engine"
  16. help
  17. When this option is defined in the amalgamation
  18. (see http://www.sqlite.org/amalgamation.html), version 3 of
  19. the full-text search engine is added to the build automatically.
  20. config BR2_PACKAGE_SQLITE_ENABLE_UNLOCK_NOTIFY
  21. bool "Enable sqlite3_unlock_notify() interface"
  22. help
  23. This option enables the sqlite3_unlock_notify() interface and its
  24. accosiated functionality. See the documentation
  25. http://www.sqlite.org/unlock_notify.html for additional information.
  26. config BR2_PACKAGE_SQLITE_SECURE_DELETE
  27. bool "Set the secure_delete pragma on by default"
  28. help
  29. This compile-time option changes the default settings of the
  30. secure_delete pragma. When this option is not used, secure_delete
  31. defaults to off. When this option is present, secure_delete defaults
  32. to on.
  33. The secure_delete setting causes deleted content to be overwritten
  34. with zeros. There is a small performance penalty for this since
  35. additional I/O must occur. On the other hand, secure_delete can
  36. prevent sensitive information from lingering in unused parts
  37. of the database file after it has allegedly been deleted.
  38. See the documentation on the
  39. http://www.sqlite.org/pragma.html#pragma_secure_delete
  40. for additional information.
  41. config BR2_PACKAGE_SQLITE_NO_SYNC
  42. bool "Disable fsync"
  43. help
  44. By default SQLite forces all database transactions to storage
  45. immediately using fsync() to protect against data loss in case
  46. of power failure.
  47. This option turns this behavior off resulting in higher performance
  48. especially when using slow flash storage.
  49. endif