diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-05-13 14:28:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-16 15:32:19 +0100 |
commit | add4df47eba51ce71324390c53ba17103df38f8a (patch) | |
tree | b1a9d7584bfb41d33473c3ac6d1c07a67eabf9ad /meta | |
parent | 0bd95383796b2eef9b23055c6c946e318b4163f2 (diff) | |
download | poky-add4df47eba51ce71324390c53ba17103df38f8a.tar.gz |
qt4: split out SQL driver config flags to QT_SQL_DRIVER_FLAGS
This allows meta-oe to override these options easily in order to enable more
SQL driver plugins.
(From OE-Core rev: 7f12a24771bca786095f823aeb2d322c52c266d2)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-qt/qt4/qt4.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc index b86f89f736..7e15b615d9 100644 --- a/meta/recipes-qt/qt4/qt4.inc +++ b/meta/recipes-qt/qt4/qt4.inc | |||
@@ -9,11 +9,13 @@ QT_ENDIAN = "${@qt_endian(d)}" | |||
9 | QT_DISTRO_FLAGS ?= "-no-accessibility -no-sm" | 9 | QT_DISTRO_FLAGS ?= "-no-accessibility -no-sm" |
10 | QT_DISTRO_FLAGS_linuxstdbase = "-sm" | 10 | QT_DISTRO_FLAGS_linuxstdbase = "-sm" |
11 | 11 | ||
12 | QT_SQL_DRIVER_FLAGS ?= "-no-sql-ibase -no-sql-mysql -no-sql-psql -no-sql-odbc -plugin-sql-sqlite" | ||
13 | |||
12 | QT_CONFIG_FLAGS += "-release -no-cups -reduce-relocations \ | 14 | QT_CONFIG_FLAGS += "-release -no-cups -reduce-relocations \ |
13 | -shared -no-nas-sound -no-nis \ | 15 | -shared -no-nas-sound -no-nis \ |
14 | -qt-gif -system-libjpeg -system-libpng -system-zlib \ | 16 | -qt-gif -system-libjpeg -system-libpng -system-zlib \ |
15 | -no-sql-ibase -no-sql-mysql -no-sql-psql -no-sql-odbc -plugin-sql-sqlite \ | ||
16 | -no-pch -qdbus -stl -glib -phonon -webkit \ | 17 | -no-pch -qdbus -stl -glib -phonon -webkit \ |
18 | ${QT_SQL_DRIVER_FLAGS} \ | ||
17 | ${QT_DISTRO_FLAGS} " | 19 | ${QT_DISTRO_FLAGS} " |
18 | 20 | ||
19 | EXTRA_OEMAKE = "-e" | 21 | EXTRA_OEMAKE = "-e" |