[Buildroot] [PATCH v2] qt: add gst-plugins-base dependency to multimedia module

Danomi Manchego danomimanchego123 at gmail.com
Mon Sep 15 01:17:26 UTC 2014


The Qt Multimedia module requires libs and h-files installed
by gst-plugins-base.  This commit adds the depends-on gstreamer
and select gst-plugins-base, exactly like the existing logic
in the Qt Phonon module.

Fixes: http://autobuild.buildroot.net/results/389617c7c36dfe92b85d3a3db12a706ae092c73d/

Signed-off-by: Danomi Manchego <danomimanchego123 at gmail.com>

---

Changes v1 -> v2:
- Moved deps from install-libs area to the config-opts area, to match
  the other Qt module deps.
---
 package/qt/Config.in | 5 +++++
 package/qt/qt.mk     | 1 +
 2 files changed, 6 insertions(+)

diff --git a/package/qt/Config.in b/package/qt/Config.in
index da159b4..f824914 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -336,9 +336,14 @@ config BR2_PACKAGE_QT_XMLPATTERNS
 config BR2_PACKAGE_QT_MULTIMEDIA
 	bool "Multimedia Module"
 	depends on BR2_PACKAGE_QT_GUI_MODULE
+	depends on BR2_PACKAGE_GSTREAMER
+	select BR2_PACKAGE_GST_PLUGINS_BASE
 	help
 	  Build QtMultimedia module.
 
+comment "Multimedia module needs gstreamer and gui support"
+	depends on !(BR2_PACKAGE_GSTREAMER && BR2_PACKAGE_QT_GUI_MODULE)
+
 config BR2_PACKAGE_QT_AUDIO_BACKEND
 	bool "QtMultimedia Audio backend"
 	depends on BR2_PACKAGE_QT_MULTIMEDIA
diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index 92a090f..6cff658 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -374,6 +374,7 @@ endif
 
 ifeq ($(BR2_PACKAGE_QT_MULTIMEDIA),y)
 QT_CONFIGURE_OPTS += -multimedia
+QT_DEPENDENCIES   += gstreamer gst-plugins-base
 else
 QT_CONFIGURE_OPTS += -no-multimedia
 endif
-- 
1.9.1



More information about the buildroot mailing list