0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Detect gcc 3.0.x

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1389 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2001-07-25 07:03:55 +00:00
parent e201504ef2
commit 762bbb2b4f

2
configure vendored
View File

@ -343,7 +343,7 @@ echo $_echo_n "Checking version of $_cc ... $_echo_c"
cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'`
case $cc_version in
'') cc_version="v. ?.??, bad"; cc_verc_fail=yes;;
2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9])
2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9]|3.[0-9].[0-9])
cc_version="$cc_version, ok";;
*) cc_version="$cc_version, bad"; cc_verc_fail=yes;;
esac