From: Samuel Martin Date: Mon, 4 Jun 2012 08:48:31 +0000 (+0000) Subject: webrtc-audio-processing: disable unsupported target architectures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e08c28f945fff0bdb1ff0342aa25e84a92eb2c83;p=buildroot.git webrtc-audio-processing: disable unsupported target architectures Currently, webrtc-audio-processing only provides support for the following architectures (see src/typedefs.h from the source directory): - x86_64 - i*86 - armel Fixes http://autobuild.buildroot.org/results/ff777bb06eddafa71327015e1d39fe911c1439d8 Signed-off-by: Samuel Martin Signed-off-by: Peter Korsgaard --- diff --git a/package/webrtc-audio-processing/Config.in b/package/webrtc-audio-processing/Config.in index e33fc57dbb..90341d69fe 100644 --- a/package/webrtc-audio-processing/Config.in +++ b/package/webrtc-audio-processing/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_WEBRTC_AUDIO_PROCESSING bool "webrtc-audio-processing" + depends on BR2_arm || BR2_i386 || BR2_x86_64 depends on BR2_INSTALL_LIBSTDCPP help AudioProcessing library based on Google's implementation of