git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9d3c66
)
Fix gcc detection: Not all gcc versions have "(GCC)" in the version string.
author
Diego Biurrun
<diego@biurrun.de>
Sun, 22 Feb 2009 11:04:22 +0000
(11:04 +0000)
committer
Diego Biurrun
<diego@biurrun.de>
Sun, 22 Feb 2009 11:04:22 +0000
(11:04 +0000)
Originally committed as revision 17522 to svn://svn.ffmpeg.org/ffmpeg/trunk
configure
patch
|
blob
|
history
diff --git
a/configure
b/configure
index
77aa982
..
42d01b1
100755
(executable)
--- a/
configure
+++ b/
configure
@@
-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 -q
i gcc
; then
cc_type=gcc
elif $cc --version 2>/dev/null | grep -q Intel; then
cc_type=icc