diff options
author | Ihar Hrachyshka <ihar.hrachyshka@gmail.com> | 2009-07-07 05:47:04 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-07-07 19:10:15 +0200 |
commit | f3d6071476b37720b561fed60b540c4f3a10a865 (patch) | |
tree | 758a04de0b6e7fedea6b3f73cf0f5fb352d0f03d /recipes/qt4/qt4.inc | |
parent | 7ad718cfd64aff6f3492dfb7163628bc100760e2 (diff) |
qt4: added postgres, mysql, and sqlite2/3 support.
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes/qt4/qt4.inc')
-rw-r--r-- | recipes/qt4/qt4.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/recipes/qt4/qt4.inc b/recipes/qt4/qt4.inc index f5da6527f0..58b8fe061f 100644 --- a/recipes/qt4/qt4.inc +++ b/recipes/qt4/qt4.inc @@ -1,6 +1,6 @@ inherit qmake_base -DEPENDS += "qt4-tools-native freetype jpeg libpng zlib dbus openssl glib-2.0 gstreamer gst-plugins-base" +DEPENDS += "qt4-tools-native freetype jpeg libpng zlib dbus openssl glib-2.0 gstreamer gst-plugins-base mysql postgresql sqlite sqlite3" require qt4_arch.inc QT_ARCH := "${@qt_arch(d)}" @@ -9,7 +9,7 @@ QT_ENDIAN = "${@qt_endian(d)}" QT_CONFIG_FLAGS += "-release -no-cups -no-accessibility -reduce-relocations \ -shared -no-nas-sound -no-sm -no-nis \ -qt-gif -system-libjpeg -system-libpng -system-zlib \ - -no-sql-ibase -no-sql-mysql -no-sql-odbc -no-sql-psql -no-sql-sqlite -no-sql-sqlite2 \ + -no-sql-ibase -plugin-sql-mysql -no-sql-odbc -plugin-sql-psql -plugin-sql-sqlite -plugin-sql-sqlite2 \ -no-pch -qdbus -stl -glib -phonon -webkit" EXTRA_OEMAKE = "-e" @@ -140,7 +140,8 @@ do_configure() { -crossarch ${QT_ARCH} \ ${QT_CONFIG_FLAGS} -fast \ -L${STAGING_LIBDIR} -I${STAGING_INCDIR} \ - -I${STAGING_INCDIR}/freetype2 + -I${STAGING_INCDIR}/freetype2 \ + -I${STAGING_INCDIR}/mysql } do_compile() { |