xref: /OK3568_Linux_fs/buildroot/package/webrtc-audio-processing/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING_ARCH_SUPPORTS
2	bool
3	default y if BR2_aarch64 || BR2_arm || BR2_i386 || BR2_x86_64
4
5config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING
6	bool "webrtc-audio-processing"
7	depends on BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING_ARCH_SUPPORTS
8	depends on BR2_INSTALL_LIBSTDCPP
9	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
10	# pthread_condattr_setclock
11	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
12	help
13	  AudioProcessing library based on Google's implementation of
14	  WebRTC.
15
16	  http://freedesktop.org/software/pulseaudio/webrtc-audio-processing/
17
18comment "webrtc-audio-processing needs a toolchain w/ C++, NPTL, gcc >= 4.8"
19	depends on BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING_ARCH_SUPPORTS
20	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS_NPTL \
21		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
22