[FFmpeg-cvslog] r17522 - trunk/configure
diego
subversion
Sun Feb 22 12:04:22 CET 2009
Author: diego
Date: Sun Feb 22 12:04:22 2009
New Revision: 17522
Log:
Fix gcc detection: Not all gcc versions have "(GCC)" in the version string.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Sun Feb 22 11:47:16 2009 (r17521)
+++ trunk/configure Sun Feb 22 12:04:22 2009 (r17522)
@@ -1356,7 +1356,7 @@ EOF
fi
rm $TMPSH
-if $cc --version 2>/dev/null | grep -q '(GCC)'; then
+if $cc --version 2>/dev/null | grep -qi gcc; then
cc_type=gcc
elif $cc --version 2>/dev/null | grep -q Intel; then
cc_type=icc
More information about the ffmpeg-cvslog
mailing list