mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
configure.ac: Add missing double quotes
That affectation was ignored. This worked on recent GCC as C++11 is enabled by default now.
This commit is contained in:
parent
adf2092b3d
commit
640100fdb6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue