a45b0194ef
Fixes: http://autobuild.buildroot.org/results/ba2/ba2d3832cb6838b2126e0f7db223305eab579d59 [Peter: move above so sub options gets properly indented] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
35 lines
737 B
Plaintext
35 lines
737 B
Plaintext
comment "portaudio needs a toolchain threads support"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
config BR2_PACKAGE_PORTAUDIO
|
|
bool "portaudio"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
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
|