mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
also adding a libstdc++ check explicitly
Original commit message from CVS: also adding a libstdc++ check explicitly
This commit is contained in:
parent
eb3761f8a9
commit
96a7939677
1 changed files with 12 additions and 2 deletions
14
configure.ac
14
configure.ac
|
@ -412,8 +412,18 @@ GST_CHECK_FEATURE(AUDIOFILE, [audiofile], afsink afsrc, [
|
||||||
dnl *** avifile ***
|
dnl *** avifile ***
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_AVIFILE, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_AVIFILE, true)
|
||||||
GST_CHECK_FEATURE(AVIFILE, [avifile], winenc windec, [
|
GST_CHECK_FEATURE(AVIFILE, [avifile], winenc windec, [
|
||||||
if test "x$HAVE_CXX" = "xyes"; then
|
if test "x$HAVE_CXX" != "xyes"; then
|
||||||
AS_AVIFILE(0.7.0)
|
AC_MSG_WARN(No C++ compiler found, not compiling avifile plug-ins)
|
||||||
|
HAVE_AVIFILE="no"
|
||||||
|
else
|
||||||
|
dnl check for libstdc++
|
||||||
|
AC_CHECK_LIB(stdc++, cout,
|
||||||
|
[AS_AVIFILE(0.7.0)],
|
||||||
|
[
|
||||||
|
AC_MSG_WARN(You need libstdc++ to compile with avifile)
|
||||||
|
HAVE_AVIFILE="no"
|
||||||
|
]
|
||||||
|
)
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue