You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
911 B

  1. menu "Configuration"
  2. depends on PACKAGE_libsqlite3
  3. config SQLITE3_BATCH_ATOMIC_WRITE
  4. bool "Batch-atomic write support"
  5. default n
  6. help
  7. Enable batch-atomic write optimization (supported only on F2FS).
  8. config SQLITE3_DYNAMIC_EXTENSIONS
  9. bool "Dynamic extensions"
  10. default y
  11. help
  12. Enable loadable extensions.
  13. config SQLITE3_FTS3
  14. bool "FTS3 support"
  15. default y
  16. help
  17. Enable FTS3 support.
  18. config SQLITE3_FTS4
  19. bool "FTS4 support"
  20. depends on SQLITE3_FTS3
  21. default y
  22. help
  23. Enable FTS4 support.
  24. config SQLITE3_FTS5
  25. bool "FTS5 support"
  26. default y
  27. help
  28. Enable FTS5 support.
  29. config SQLITE3_JSON1
  30. bool "JSON1 extension"
  31. default y
  32. help
  33. Include JSON1 support. This is the default.
  34. config SQLITE3_RTREE
  35. bool "R-Tree support"
  36. default y
  37. help
  38. Enable R-Tree support.
  39. config SQLITE3_SESSION
  40. bool "Session extension"
  41. default n
  42. help
  43. Enable the session extension (default no).
  44. endmenu