diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-12-22 02:06:19 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-23 08:27:30 +0100 |
commit | 1b603449fd0dcbaf22188e1f2e149da115ff2ea1 (patch) | |
tree | 9013307d11dcd4ab7bf047647ea871c4f3c27e04 /package | |
parent | 5649176a485e1138ed3e42ebb7700255f6c93153 (diff) | |
download | buildroot-novena-1b603449fd0dcbaf22188e1f2e149da115ff2ea1.tar.gz buildroot-novena-1b603449fd0dcbaf22188e1f2e149da115ff2ea1.zip |
pulseaudio: needs threads
Fixes:
http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/multimedia/gst-plugins-good/Config.in | 1 | ||||
-rw-r--r-- | package/multimedia/mpd/Config.in | 1 | ||||
-rw-r--r-- | package/multimedia/pulseaudio/Config.in | 5 |
3 files changed, 5 insertions, 2 deletions
diff --git a/package/multimedia/gst-plugins-good/Config.in b/package/multimedia/gst-plugins-good/Config.in index 33ecb5c32..b5006e623 100644 --- a/package/multimedia/gst-plugins-good/Config.in +++ b/package/multimedia/gst-plugins-good/Config.in @@ -193,6 +193,7 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4 bool "oss4 (Open Sound System 4)" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE + depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio select BR2_PACKAGE_PULSEAUDIO bool "pulseaudio" diff --git a/package/multimedia/mpd/Config.in b/package/multimedia/mpd/Config.in index 5d0818299..2e447418a 100644 --- a/package/multimedia/mpd/Config.in +++ b/package/multimedia/mpd/Config.in @@ -40,6 +40,7 @@ config BR2_PACKAGE_MPD_AUDIOFILE config BR2_PACKAGE_MPD_PULSEAUDIO bool "pulseaudio" + depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio select BR2_PACKAGE_PULSEAUDIO help Enable pulseaudio output support. diff --git a/package/multimedia/pulseaudio/Config.in b/package/multimedia/pulseaudio/Config.in index 6c767bb6b..eeb8b5ab0 100644 --- a/package/multimedia/pulseaudio/Config.in +++ b/package/multimedia/pulseaudio/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PULSEAUDIO bool "pulseaudio" depends on BR2_USE_WCHAR + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBTOOL select BR2_PACKAGE_JSON_C select BR2_PACKAGE_LIBSNDFILE @@ -17,5 +18,5 @@ config BR2_PACKAGE_PULSEAUDIO http://pulseaudio.org -comment "pulseaudio requires a toolchain with WCHAR support" - depends on !BR2_USE_WCHAR +comment "pulseaudio requires a toolchain with WCHAR and threads support" + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS |