diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2010-07-21 23:20:59 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-07-26 22:52:50 +0200 |
commit | cf75bd278968a7dca0d01dcd3f5885cbe3c74d39 (patch) | |
tree | 5568e81a8ac11a313c4d65c621552274dc4863ba /package/qt/Config.in | |
parent | f978f2249d2c420a3e4eb5bd804ca524380f1ae2 (diff) |
qt: fix alsa-lib dependency
If BR2_PACKAGE_QT_AUDIO_BACKEND=y, QtMultimedia requires the audio backend
to be already in staging in order to compile.
The backend is system-dependent, but since buildroot builds Linux systems
only, it is safe to assume that the it will always be ALSA.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/qt/Config.in')
-rw-r--r-- | package/qt/Config.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in index b09d6429c..93a8ab1a8 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -311,8 +311,9 @@ config BR2_PACKAGE_QT_MULTIMEDIA config BR2_PACKAGE_QT_AUDIO_BACKEND bool "QtMultimedia Audio backend" depends on BR2_PACKAGE_QT_MULTIMEDIA + select BR2_PACKAGE_ALSA_LIB help - Build the platform audio backend into QtMultimedia if available + Build the ALSA audio backend into QtMultimedia config BR2_PACKAGE_QT_SVG bool "SVG Module" |