Config.sql.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. depends on BR2_USE_MMU # mysql
  9. select BR2_PACKAGE_MYSQL
  10. select BR2_PACKAGE_NCURSES
  11. select BR2_PACKAGE_READLINE
  12. help
  13. Build MySQL driver
  14. If unsure, say n.
  15. config BR2_PACKAGE_QT_ODBC
  16. bool "ODBC Driver"
  17. depends on !BR2_STATIC_LIBS # unixodbc
  18. select BR2_PACKAGE_UNIXODBC
  19. help
  20. Build ODBC driver
  21. If unsure, say n.
  22. comment "ODBC driver needs a toolchain w/ dynamic library"
  23. depends on BR2_STATIC_LIBS
  24. config BR2_PACKAGE_QT_PSQL
  25. bool "PostgreSQL Driver"
  26. depends on !BR2_STATIC_LIBS
  27. depends on BR2_USE_WCHAR
  28. select BR2_PACKAGE_POSTGRESQL
  29. help
  30. Build PostgreSQL driver
  31. If unsure, say n.
  32. comment "PostgreSQL driver needs a toolchain w/ wchar, dynamic library"
  33. depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
  34. choice
  35. prompt "SQLite 3 support"
  36. default BR2_PACKAGE_QT_SQLITE_NONE
  37. help
  38. Select SQLite support.
  39. config BR2_PACKAGE_QT_SQLITE_NONE
  40. bool "No sqlite support"
  41. help
  42. Do not compile any kind of SQLite support.
  43. config BR2_PACKAGE_QT_SQLITE_QT
  44. bool "Qt SQLite"
  45. help
  46. Use Qt bundled SQLite support.
  47. config BR2_PACKAGE_QT_SQLITE_SYSTEM
  48. bool "System SQLite"
  49. select BR2_PACKAGE_SQLITE
  50. help
  51. Use system SQLite.
  52. endchoice
  53. endif