pulseaudio: needs threads
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Sat, 22 Dec 2012 02:06:19 +0000 (02:06 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 23 Dec 2012 07:27:30 +0000 (08:27 +0100)
Fixes:
http://autobuild.buildroot.net/results/4d6a5793e475683fbc58ccaf03cf7816233a5052/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/multimedia/gst-plugins-good/Config.in
package/multimedia/mpd/Config.in
package/multimedia/pulseaudio/Config.in

index 33ecb5c32c16e04b041fa2f7a8657d3c4afe9c1b..b5006e62391409d01950389d4b6ef8f08c7b9228 100644 (file)
@@ -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"
 
index 5d0818299fd88774125c5fe0cae8107f9dce0782..2e447418a94d2f0ce9944ff1d043bb28d83b6779 100644 (file)
@@ -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.
index 6c767bb6b99e6e53602e46d18d552e8a664974a0..eeb8b5ab07d6f4df63a58c00cdc107873bcbd6c5 100644 (file)
@@ -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