diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2015-05-27 12:58:15 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-30 22:25:12 +0100 |
commit | 968973d55d4b33e1a929ed4cdf9387fcaba2d93f (patch) | |
tree | 7f2b5da6e71629dfb87d48fa47c55f9017f8df82 /meta/recipes-qt/qt4 | |
parent | 19eaf4a59f4545e049f525d0b0446a9c08d18f0f (diff) | |
download | openembedded-core-968973d55d4b33e1a929ed4cdf9387fcaba2d93f.tar.gz openembedded-core-968973d55d4b33e1a929ed4cdf9387fcaba2d93f.tar.bz2 openembedded-core-968973d55d4b33e1a929ed4cdf9387fcaba2d93f.zip |
qt4: unconditionally disable gstreamer 0.10 support in qt webkit
Previously it was auto-detected in a broken way, which was causing build errors
for qt-mobility. Qt4 build will fail if some gstreamer 0.10 packages are
available at build time, but not all. It will not fail if none of
the packages are available or if all of them are available. We can't guarantee either,
hence this patch.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/qt4')
-rw-r--r-- | meta/recipes-qt/qt4/qt4.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt4.inc b/meta/recipes-qt/qt4/qt4.inc index 6d679940d4..2175fc0de7 100644 --- a/meta/recipes-qt/qt4/qt4.inc +++ b/meta/recipes-qt/qt4/qt4.inc @@ -25,6 +25,7 @@ QT_CONFIG_FLAGS += "-release -no-cups -reduce-relocations \ -system-libjpeg -system-libpng -system-libtiff -system-zlib \ -no-pch -stl -glib -icu \ -no-rpath -silent \ + -D USE_QTMULTIMEDIA=1 \ ${QT_DBUS} \ ${QT_QT3SUPPORT} \ ${QT_WEBKIT} \ |