diff options
author | Jingdong Lu <jingdong.lu@windriver.com> | 2011-01-19 16:19:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-20 21:37:01 +0000 |
commit | 811a9f7a33c3cc6b51b59ef1f15d13edeb058eef (patch) | |
tree | e72e7d06594172644acb54b449e10c0f917481ba /meta/recipes-qt | |
parent | 9da1e13e732313684159338279f8fb2ef8406056 (diff) | |
download | openembedded-core-811a9f7a33c3cc6b51b59ef1f15d13edeb058eef.tar.gz openembedded-core-811a9f7a33c3cc6b51b59ef1f15d13edeb058eef.tar.bz2 openembedded-core-811a9f7a33c3cc6b51b59ef1f15d13edeb058eef.zip |
qt4: Enable accessibility and sm option for LSB.
LSB library checks will look for some symbols of qt4 libraries. Enable "accessibility" and "sm" in order to pass the LSB test.
Signed-off-by: Jingdong Lu<jingdong.lu@windriver.com>
Diffstat (limited to 'meta/recipes-qt')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-x11-free_4.6.3.bb | 2 | ||||
-rw-r--r-- | meta/recipes-qt/qt4/qt4.inc | 10 |
2 files changed, 8 insertions, 4 deletions
diff --git a/meta/recipes-qt/qt4/qt4-x11-free_4.6.3.bb b/meta/recipes-qt/qt4/qt4-x11-free_4.6.3.bb index 0a03e9b5a3..f13b94769f 100644 --- a/meta/recipes-qt/qt4/qt4-x11-free_4.6.3.bb +++ b/meta/recipes-qt/qt4/qt4-x11-free_4.6.3.bb @@ -1,7 +1,7 @@ require qt4-x11-free.inc require qt-4.6.3.inc -PR = "r1" +PR = "r2" QT_CONFIG_FLAGS += " -xrandr " diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc index 16d5bebd36..33824456ff 100644 --- a/meta/recipes-qt/qt4/qt4.inc +++ b/meta/recipes-qt/qt4/qt4.inc @@ -5,11 +5,15 @@ DEPENDS += "qt4-tools-native freetype jpeg libpng zlib dbus openssl glib-2.0 gst inherit qmake_base -QT_CONFIG_FLAGS += "-release -no-cups -no-accessibility -reduce-relocations \ - -shared -no-nas-sound -no-sm -no-nis \ +QT_DISTRO_FLAGS ?= "-no-accessibility -no-sm" +QT_DISTRO_FLAGS_poky-lsb = "-sm" + +QT_CONFIG_FLAGS += "-release -no-cups -reduce-relocations \ + -shared -no-nas-sound -no-nis \ -qt-gif -system-libjpeg -system-libpng -system-zlib \ -no-sql-ibase -no-sql-mysql -no-sql-psql -no-sql-odbc -plugin-sql-sqlite \ - -no-pch -dbus -stl -glib -phonon -webkit" + -no-pch -dbus -stl -glib -phonon -webkit \ + ${QT_DISTRO_FLAGS} " EXTRA_OEMAKE = "-e" |