2
1

Config.sql.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. menuconfig BR2_PACKAGE_QT_SQL_MODULE
  2. bool "SQL Module"
  3. help
  4. Compile Qt SQL Module
  5. if BR2_PACKAGE_QT_SQL_MODULE
  6. config BR2_PACKAGE_QT_MYSQL
  7. bool "MySQL Driver"
  8. select BR2_PACKAGE_MYSQL_CLIENT
  9. select BR2_PACKAGE_NCURSES
  10. select BR2_PACKAGE_READLINE
  11. help
  12. Build MySQL driver
  13. If unsure, say n.
  14. config BR2_PACKAGE_QT_IBASE
  15. bool "iBase Driver"
  16. depends on BROKEN # libfbclient not in BR
  17. help
  18. Build iBase driver
  19. If unsure, say n.
  20. config BR2_PACKAGE_QT_ODBC
  21. bool "ODBC Driver"
  22. depends on BROKEN # libodbc not in BR
  23. help
  24. Build ODBC driver
  25. If unsure, say n.
  26. config BR2_PACKAGE_QT_PSQL
  27. bool "PostgreSQL Driver"
  28. depends on BROKEN # libpgsql not in BR
  29. help
  30. Build PostgreSQL driver
  31. If unsure, say n.
  32. choice
  33. prompt "SQLite 3 support"
  34. default BR2_PACKAGE_QT_SQLITE_NONE
  35. help
  36. Select SQLite support.
  37. config BR2_PACKAGE_QT_SQLITE_NONE
  38. bool "No sqlite support"
  39. help
  40. Do not compile any kind of SQLite support.
  41. config BR2_PACKAGE_QT_SQLITE_QT
  42. bool "Qt SQLite"
  43. help
  44. Use Qt bundled SQLite support.
  45. config BR2_PACKAGE_QT_SQLITE_SYSTEM
  46. bool "System SQLite"
  47. select BR2_PACKAGE_SQLITE
  48. help
  49. Use system SQLite.
  50. endchoice
  51. endif