Commit 3ed9137f authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

pulseaudio: needs dynamic library support

parent 5d496bdd
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -205,13 +205,14 @@ config BR2_PACKAGE_GST_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"

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_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC
	bool "souphttpsrc (http client)"
+3 −2
Original line number Diff line number Diff line
@@ -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)"
+4 −0
Original line number Diff line number Diff line
@@ -238,10 +238,14 @@ config BR2_PACKAGE_MPD_OSS
config BR2_PACKAGE_MPD_PULSEAUDIO
	bool "pulseaudio"
	depends on BR2_ARCH_HAS_ATOMICS # pulseaudio
	depends on !BR2_STATIC_LIBS # pulseaudio
	select BR2_PACKAGE_PULSEAUDIO
	help
	  Enable pulseaudio output support.

comment "pulseaudio support needs a toolchain w/ dynamic library"
	depends on BR2_STATIC_LIBS

comment "Miscellaneous plugins"

config BR2_PACKAGE_MPD_AVAHI_SUPPORT
+3 −2
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@ config BR2_PACKAGE_PULSEAUDIO
	bool "pulseaudio"
	depends on BR2_USE_WCHAR
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on !BR2_STATIC_LIBS
	select BR2_PACKAGE_LIBTOOL
	select BR2_PACKAGE_JSON_C
	select BR2_PACKAGE_LIBSNDFILE
@@ -30,7 +31,7 @@ config BR2_PACKAGE_PULSEAUDIO_DAEMON

endif

comment "pulseaudio needs a toolchain w/ wchar, threads"
comment "pulseaudio needs a toolchain w/ wchar, threads, dynamic library"
	depends on BR2_USE_MMU
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
	depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS