From 0ca8c426d76bc5fa3294822fc54e651aa1a93712 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 5 Oct 2003 16:51:52 +0000 Subject: [PATCH] fixes 121184 don't compile ffmpeg without gcc Original commit message from CVS: fixes 121184 don't compile ffmpeg without gcc --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 42396ec03..84cad0ed2 100644 --- a/configure.ac +++ b/configure.ac @@ -602,6 +602,10 @@ GST_CHECK_FEATURE(FFMPEG, [ffmpeg plug-ins], ffmpeg, [ HAVE_FFMPEG=yes, HAVE_FFMPEG=no) fi fi + # ffmpeg requires gcc + if test "x$GCC" != xyes ; then + HAVE_FFMPEG=no + fi # we only bother with uninstalled (included) ffmpeg for now AC_DEFINE_UNQUOTED(HAVE_FFMPEG_UNINSTALLED, 1, [defined if we use uninstalled ffmpeg]) -- GitLab