From 4d6a21926e4baca5e937c3d34455f01e9e3e4667 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Thu, 7 Jul 2016 12:31:20 -0400 Subject: [PATCH] webrtcdsp: Relax C++11 check The library does not require any STL C++11 specific headers. This fixes our OSX build as we target a SDK version that does not support C++11 STL. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 5dc341b23a..2ca3247f11 100644 --- a/configure.ac +++ b/configure.ac @@ -3386,6 +3386,7 @@ AG_GST_CHECK_FEATURE(WEBRTCDSP, [WebRTC Audio Processing], webrtcdsp, [ old_CPPFLAGS=$CPPFLAGS old_LDFLAGS=$GNUSTL_LIBS CPPFLAGS="-std=c++11 $CPPFLAGS $GNUSTL_CFLAGS" + AC_CHECK_HEADER([vector],[],[HAVE_WEBRTCDSP=no]) CPPFLAGS=$old_CPPFLAGS LDFLAGS=$old_LDFLAGS AC_LANG_POP([C++])