hc
2023-02-18 a08c8b75ee83d7f62c9aefc23bfb42082aa4076c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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