summaryrefslogtreecommitdiff
path: root/package/gstreamer1/gst1-plugins-good
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2015-05-17 09:18:23 +0200
committerPeter Korsgaard <peter@korsgaard.com>2015-05-17 09:22:49 +0200
commit3ed9137fee544875fa6dca7c0369808ec4b274d4 (patch)
tree8346c0c3e8191a2f395fa07c5eeff29bf5598f63 /package/gstreamer1/gst1-plugins-good
parent5d496bdddb44c6f8f97d0f573a7220ebf0ec41eb (diff)
pulseaudio: needs dynamic library support
Fixes: http://autobuild.buildroot.net/results/75a/75a3380fdcce88f1f9f2a77c4f059787623919d7/ http://autobuild.buildroot.net/results/f4a/f4a22344bd5c8f59e6f8cacb6a549f8d8fe99af2/ Pulseaudio uses dlfcn.h, so it cannot work in a pure static environment. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gstreamer1/gst1-plugins-good')
-rw-r--r--package/gstreamer1/gst1-plugins-good/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/gstreamer1/gst1-plugins-good/Config.in b/package/gstreamer1/gst1-plugins-good/Config.in
index b3929b440..6216c7f93 100644
--- a/package/gstreamer1/gst1-plugins-good/Config.in
+++ b/package/gstreamer1/gst1-plugins-good/Config.in
@@ -312,15 +312,16 @@ config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_PULSE
depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
depends on BR2_USE_MMU # pulseaudio
depends on BR2_ARCH_HAS_ATOMICS # pulseaudio
+ depends on !BR2_STATIC_LIBS # pulseaudio
select BR2_PACKAGE_PULSEAUDIO
bool "pulseaudio"
help
PulseAudio plugin library
-comment "pulseaudio support needs a toolchain w/ threads"
+comment "pulseaudio support needs a toolchain w/ threads, dynamic library"
depends on BR2_USE_MMU
depends on BR2_ARCH_HAS_ATOMICS
- depends on !BR2_TOOLCHAIN_HAS_THREADS
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC
bool "souphttpsrc (http client)"