configure.ac: Cleanup unused variable

We only check for a header, no need for overriding LDFLAGS.
This commit is contained in:
Nicolas Dufresne 2016-07-07 13:22:02 -04:00
parent 6033c37d14
commit c57d4f3e5e

View file

@ -3384,11 +3384,9 @@ AG_GST_CHECK_FEATURE(WEBRTCDSP, [WebRTC Audio Processing], webrtcdsp, [
AC_LANG_PUSH([C++])
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++])
])