Commit 8277bb18 authored by Anton Kolesov's avatar Anton Kolesov Committed by Peter Korsgaard
Browse files

pulseaudio: add dependency on atomic operations

This fixes:
http://autobuild.buildroot.net/results/d463f3bf730a600a07ed6cd33695bf45e9fd3540/



Signed-off-by: default avatarAnton Kolesov <Anton.Kolesov@synopsys.com>
[yann.morin.1998@free.fr: use the new symbol; remove comment strings]
Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent da2f1822
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -209,9 +209,15 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE
	depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
	depends on BR2_LARGEFILE # pulseaudio -> libsndfile
	depends on BR2_USE_MMU # pulseaudio
	depends on BR2_ARCH_HAS_ATOMICS # pulseaudio
	select BR2_PACKAGE_PULSEAUDIO
	bool "pulseaudio"

comment "pulseaudio support needs a toolchain w/ largefile, threads"
	depends on BR2_USE_MMU
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC
	bool "souphttpsrc (http client)"
	depends on BR2_USE_WCHAR # libsoup -> glib2
+6 −0
Original line number Diff line number Diff line
@@ -309,11 +309,17 @@ config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_PULSE
	depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
	depends on BR2_LARGEFILE # pulseaudio -> libsndfile
	depends on BR2_USE_MMU # pulseaudio
	depends on BR2_ARCH_HAS_ATOMICS # pulseaudio
	select BR2_PACKAGE_PULSEAUDIO
	bool "pulseaudio"
	help
	  PulseAudio plugin library

comment "pulseaudio support needs a toolchain w/ largefile, threads"
	depends on BR2_USE_MMU
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC
	bool "souphttpsrc (http client)"
	depends on BR2_USE_WCHAR # libsoup -> glib2
+2 −0
Original line number Diff line number Diff line
@@ -45,11 +45,13 @@ config BR2_PACKAGE_MPD_AUDIOFILE
config BR2_PACKAGE_MPD_PULSEAUDIO
	bool "pulseaudio"
	depends on BR2_LARGEFILE # pulseaudio -> libsndfile
	depends on BR2_ARCH_HAS_ATOMICS # pulseaudio
	select BR2_PACKAGE_PULSEAUDIO
	help
	  Enable pulseaudio output support.

comment "pulseaudio support needs a toolchain w/ largefile"
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_LARGEFILE

config BR2_PACKAGE_MPD_BZIP2
+2 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ config BR2_PACKAGE_PULSEAUDIO
	select BR2_PACKAGE_SPEEX
	depends on BR2_LARGEFILE
	depends on BR2_USE_MMU # fork()
	depends on BR2_ARCH_HAS_ATOMICS
	help
	  PulseAudio is a sound system for POSIX OSes, meaning that it
	  is a proxy for your sound applications. It allows you to do
@@ -32,4 +33,5 @@ endif

comment "pulseaudio needs a toolchain w/ wchar, largefile, threads"
	depends on BR2_USE_MMU
	depends on BR2_ARCH_HAS_ATOMICS
	depends on !BR2_USE_WCHAR || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS