Config.sql.in 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. config BR2_PACKAGE_QT_SQLITE
  33. bool "SQLite 3 Driver"
  34. help
  35. Build SQLite driver
  36. If unsure, say n.
  37. config BR2_PACKAGE_QT_SQLITE2
  38. bool "SQLite 2 Driver"
  39. depends on BROKEN # sqlite2 not in BR
  40. help
  41. Build SQLite 2 driver
  42. If unsure, say n.
  43. endif