452edd513301332fc01ebde8963a345e2293f7bb
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / qt / Config.sql.in
1 menuconfig BR2_PACKAGE_QT_SQL_MODULE
2         bool "SQL Module"
3         help
4           Compile Qt SQL Module
5
6 if BR2_PACKAGE_QT_SQL_MODULE
7 config BR2_PACKAGE_QT_MYSQL
8         bool "MySQL Driver"
9         select BR2_PACKAGE_MYSQL
10         select BR2_PACKAGE_NCURSES
11         select BR2_PACKAGE_READLINE
12         depends on BR2_USE_MMU # mysql
13         help
14           Build MySQL driver
15           If unsure, say n.
16
17 config BR2_PACKAGE_QT_IBASE
18         bool "iBase Driver"
19         depends on BROKEN # libfbclient not in BR
20         help
21           Build iBase driver
22           If unsure, say n.
23
24 config BR2_PACKAGE_QT_ODBC
25         bool "ODBC Driver"
26         select BR2_PACKAGE_UNIXODBC
27         help
28           Build ODBC driver
29           If unsure, say n.
30
31 config BR2_PACKAGE_QT_PSQL
32         bool "PostgreSQL Driver"
33         select BR2_PACKAGE_POSTGRESQL
34         depends on !BR2_STATIC_LIBS
35         help
36           Build PostgreSQL driver
37           If unsure, say n.
38
39 comment "PostgreSQL driver needs a toolchain w/ dynamic library"
40         depends on BR2_STATIC_LIBS
41
42 choice
43         prompt "SQLite 3 support"
44         default BR2_PACKAGE_QT_SQLITE_NONE
45         help
46           Select SQLite support.
47
48 config BR2_PACKAGE_QT_SQLITE_NONE
49         bool "No sqlite support"
50         help
51           Do not compile any kind of SQLite support.
52
53 config BR2_PACKAGE_QT_SQLITE_QT
54         bool "Qt SQLite"
55         help
56           Use Qt bundled SQLite support.
57
58 config BR2_PACKAGE_QT_SQLITE_SYSTEM
59         bool "System SQLite"
60         select BR2_PACKAGE_SQLITE
61         help
62           Use system SQLite.
63
64 endchoice
65
66 endif