beb45605db
Some parts of alsa-lib correctly use threads only when available, but some other parts, especially certain PCM plugins, unconditionally require threads. While it would certainly be possible to fix alsa-lib to only use threads when available, it probably doesn't make much sense, since on an embedded system that has audio, we are probably powerful enough to enable thread support in the C library. Fixes: http://autobuild.buildroot.org/results/e14469be7f6171f4c8c0c09c8e32943819f7938b/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
31 lines
605 B
Plaintext
31 lines
605 B
Plaintext
config BR2_PACKAGE_PORTAUDIO
|
|
bool "portaudio"
|
|
help
|
|
PortAudio is a free, cross-platform, open-source,
|
|
audio I/O library.
|
|
|
|
http://www.portaudio.com/
|
|
|
|
if BR2_PACKAGE_PORTAUDIO
|
|
|
|
config BR2_PACKAGE_PORTAUDIO_ALSA
|
|
bool "alsa support"
|
|
select BR2_PACKAGE_ALSA_LIB
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # alsa-lib
|
|
default y
|
|
help
|
|
Compile with ALSA support.
|
|
|
|
config BR2_PACKAGE_PORTAUDIO_OSS
|
|
bool "oss support"
|
|
help
|
|
Compile with OSS support.
|
|
|
|
config BR2_PACKAGE_PORTAUDIO_CXX
|
|
bool "C++ bindings"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
help
|
|
Enables C++ bindings.
|
|
|
|
endif # BR2_PACKAGE_PORTAUDIO
|