diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2003-10-05 16:51:52 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2003-10-05 16:51:52 +0000 |
commit | 78f960fe5e4deba591d5d4772959c0f2260b1ca0 (patch) | |
tree | 678f7f07e3b817f833983342e0dedb418881020a | |
parent | 6136075583e0624d2be79e2d853c00058741cfda (diff) | |
download | gst-plugins-bad-78f960fe5e4deba591d5d4772959c0f2260b1ca0.tar.gz gst-plugins-bad-78f960fe5e4deba591d5d4772959c0f2260b1ca0.tar.bz2 gst-plugins-bad-78f960fe5e4deba591d5d4772959c0f2260b1ca0.zip |
fixes 121184 don't compile ffmpeg without gcc
Original commit message from CVS:
fixes 121184
don't compile ffmpeg without gcc
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 4 insertions, 0 deletions
diff --git a/common b/common -Subproject b4a839c99c0bf2d4903824426ef3cc0d4b0ad99 +Subproject b7abb510aa14e8692df39ea8c2c758e37d8a8d8 diff --git a/configure.ac b/configure.ac index 42396ec0..84cad0ed 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]) |