summaryrefslogtreecommitdiffstats
path: root/package/qt
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-05-25 22:54:42 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-05-25 22:54:42 +0200
commit4059a814bb133d4dc306a366cdeba186cb7b8b89 (patch)
tree6274d1044757187040e51f2f31dd6f3ef902d1f4 /package/qt
parentd874b08abc6bdd682b5e66321831337d1b79bdc0 (diff)
downloadbuildroot-novena-4059a814bb133d4dc306a366cdeba186cb7b8b89.tar.gz
buildroot-novena-4059a814bb133d4dc306a366cdeba186cb7b8b89.zip
qt: use depends on for gstreamer
Gstreamer has complicated dependencies (because of glib2), so use depends on rather than select. At the same time default phonon support to Y if gstreamer is available, as this support is likely wanted. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/qt')
-rw-r--r--package/qt/Config.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in
index 4371fc36e..4bc4eaa41 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -263,13 +263,17 @@ endif
config BR2_PACKAGE_QT_PHONON
bool "Phonon Module"
- select BR2_PACKAGE_GSTREAMER
+ depends on BR2_PACKAGE_GSTREAMER
select BR2_PACKAGE_GST_PLUGINS_BASE
+ default y
help
Build the Phonon module. Support for different audio/video
formats can be configured at the GStreamer package.
If unsure, say n.
+comment "Phonon module needs gstreamer"
+ depends on !BR2_PACKAGE_GSTREAMER
+
config BR2_PACKAGE_QT_PHONON_BACKEND
bool "Phonon Module Backend"
depends on BR2_PACKAGE_QT_PHONON