summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNicolas Dufresne <nicolas.dufresne@collabora.com>2016-07-04 14:57:11 -0400
committerNicolas Dufresne <nicolas.dufresne@collabora.com>2016-07-04 15:23:08 -0400
commit640100fdb66f9d2d43521241b119602e692e8487 (patch)
tree416558e4be27f4d4b96d3b5b0f2c58529386be20 /configure.ac
parentadf2092b3da83d837001711614570f6b9996f538 (diff)
downloadgstreamer-plugins-bad-640100fdb66f9d2d43521241b119602e692e8487.tar.gz
configure.ac: Add missing double quotes
That affectation was ignored. This worked on recent GCC as C++11 is enabled by default now.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 51856d6fe..3700495a0 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