From: Nicolas Dufresne Date: Mon, 4 Jul 2016 18:57:11 +0000 (-0400) Subject: configure.ac: Add missing double quotes X-Git-Tag: 1.10.4~499 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=640100fdb66f9d2d43521241b119602e692e8487;p=platform%2Fupstream%2Fgst-plugins-bad.git configure.ac: Add missing double quotes That affectation was ignored. This worked on recent GCC as C++11 is enabled by default now. --- diff --git a/configure.ac b/configure.ac index 51856d6..3700495 100644 --- a/configure.ac +++ b/configure.ac @@ -3370,7 +3370,7 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_WEBRTCDSP, true) AG_GST_CHECK_FEATURE(WEBRTCDSP, [WebRTC Audio Processing], webrtcdsp, [ AC_LANG_PUSH([C++]) old_CPPFLAGS=$CPPFLAGS - CPPFLAGS=-std=c++11 $CPPFLAGS + CPPFLAGS="-std=c++11 $CPPFLAGS" AG_GST_PKG_CHECK_MODULES(WEBRTCDSP, webrtc-audio-processing = 0.2) AC_CHECK_HEADER([typeindex],[],[HAVE_WEBRTCDSP=no]) CPPFLAGS=$old_CPPFLAGS