mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
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.
This commit is contained in:
parent
928dcd93ef
commit
4d6a21926e
1 changed files with 1 additions and 0 deletions
|
@ -3386,6 +3386,7 @@ AG_GST_CHECK_FEATURE(WEBRTCDSP, [WebRTC Audio Processing], webrtcdsp, [
|
||||||
old_CPPFLAGS=$CPPFLAGS
|
old_CPPFLAGS=$CPPFLAGS
|
||||||
old_LDFLAGS=$GNUSTL_LIBS
|
old_LDFLAGS=$GNUSTL_LIBS
|
||||||
CPPFLAGS="-std=c++11 $CPPFLAGS $GNUSTL_CFLAGS"
|
CPPFLAGS="-std=c++11 $CPPFLAGS $GNUSTL_CFLAGS"
|
||||||
|
AC_CHECK_HEADER([vector],[],[HAVE_WEBRTCDSP=no])
|
||||||
CPPFLAGS=$old_CPPFLAGS
|
CPPFLAGS=$old_CPPFLAGS
|
||||||
LDFLAGS=$old_LDFLAGS
|
LDFLAGS=$old_LDFLAGS
|
||||||
AC_LANG_POP([C++])
|
AC_LANG_POP([C++])
|
||||||
|
|
Loading…
Reference in a new issue