buildroot/package/portaudio/Config.in
Adam Duskett 289137ed61 package/p*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues
on all of these Config files.  This patch cleans up all warnings
related to the ordering in the Config files for packages starting with
the letter p in the package directory.

The appropriate ordering is: type, default, depends on, select, help
See http://nightly.buildroot.org/#_config_files for more information.

Signed-off-by: Adam Duskett <Adamduskett@outlook.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-05-01 19:01:15 +02:00

34 lines
683 B
Plaintext

comment "portaudio needs a toolchain w/ threads"
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"
default y
select BR2_PACKAGE_ALSA_LIB
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