[oe] [meta-qt5][PATCH] qtmultimedia: Use PACKAGECONFIG for gstremer-0.10 and change it to disabled by default

Martin Jansa martin.jansa at gmail.com
Sun Jan 19 11:28:10 UTC 2014


* it doesn't support gst-1.x like qtwebkit yet, disable it by default to
  build images without gst-0.10 where possible.

Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 recipes-qt/qt5/qtmultimedia.inc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/recipes-qt/qt5/qtmultimedia.inc b/recipes-qt/qt5/qtmultimedia.inc
index 8726985..66133f4 100644
--- a/recipes-qt/qt5/qtmultimedia.inc
+++ b/recipes-qt/qt5/qtmultimedia.inc
@@ -1,13 +1,17 @@
 require qt5.inc
 
-DEPENDS += "qtdeclarative gstreamer gst-plugins-base alsa-lib "
+DEPENDS += "qtdeclarative alsa-lib"
 
 PACKAGECONFIG ??= ""
 PACKAGECONFIG[openal] = ",,openal-soft"
+PACKAGECONFIG[gstreamer010] = ",,gstreamer gst-plugins-base"
 
 do_configure_prepend() {
     # disable openal test if it isn't enabled by PACKAGECONFIG
     sed -i 's/^qtCompileTest(openal)/OE_OPENAL_ENABLED:qtCompileTest(openal)/g' ${S}/qtmultimedia.pro
+    # disable gstreamer-0.10 test if it isn't enabled by PACKAGECONFIG
+    sed -i 's/^\( *\)qtCompileTest(gstreamer)/\1OE_GSTREAMER010_ENABLED:qtCompileTest(gstreamer) {/g' ${S}/qtmultimedia.pro
 }
 
 EXTRA_QMAKEVARS_PRE += "${@base_contains('PACKAGECONFIG', 'openal', 'CONFIG+=OE_OPENAL_ENABLED', '', d)}"
+EXTRA_QMAKEVARS_PRE += "${@base_contains('PACKAGECONFIG', 'gstreamer010', 'CONFIG+=OE_GSTREAMER010_ENABLED', '', d)}"
-- 
1.8.5.2




More information about the Openembedded-devel mailing list