diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-08-13 12:29:00 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-08-13 12:29:00 +0000 |
commit | 246be40a90c58cb9771017152edd7b59b48640d2 (patch) | |
tree | 31e556d2098b6392810249c5c42d1b2e9fe3db92 | |
parent | fdca2dc12c1d7922de6ea0383074730041eb3896 (diff) | |
download | gst-plugins-bad-246be40a90c58cb9771017152edd7b59b48640d2.tar.gz gst-plugins-bad-246be40a90c58cb9771017152edd7b59b48640d2.tar.bz2 gst-plugins-bad-246be40a90c58cb9771017152edd7b59b48640d2.zip |
ok, i should stop playing around with this now ;)
Original commit message from CVS:
ok, i should stop playing around with this now ;)
-rw-r--r-- | configure.ac | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index 80115d93..b1036523 100644 --- a/configure.ac +++ b/configure.ac @@ -412,19 +412,30 @@ GST_CHECK_FEATURE(AUDIOFILE, [audiofile], afsink afsrc, [ dnl *** avifile *** translit(dnm, m, l) AM_CONDITIONAL(USE_AVIFILE, true) GST_CHECK_FEATURE(AVIFILE, [avifile], winenc windec, [ + if test "x$no_x" = "xyes"; then + AC_MSG_WARN([No X libraries found, avifile test might fail compilation]) + fi if test "x$HAVE_CXX" != "xyes"; then - 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" - ] - ) + AC_MSG_WARN([No C++ compiler found, avifile test will fail compilation]) fi + AC_CHECK_LIB(stdc++, cout,, + [AC_MSG_WARN([no libstdc++ found, avifile test will fail])] + ) + AS_AVIFILE(0.7.0) + +dnl if test "x$HAVE_CXX" != "xyes"; then +dnl HAVE_AVIFILE="no" +dnl else +dnl dnl check for libstdc++ +dnl AC_CHECK_LIB(stdc++, cout, +dnl dnl check for X LIBS +dnl [AS_AVIFILE(0.7.0)], +dnl [ +dnl AC_MSG_WARN(You need libstdc++ to compile with avifile) +dnl HAVE_AVIFILE="no" +dnl ] +dnl ) +dnl fi ]) dnl *** CDParanoia *** |