1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-20 23:07:02 +00:00

Fixed gcc checking for 2.95 subrevisions (like 2.95.2.1).

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1244 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmos4 2001-06-29 10:45:00 +00:00
parent 1c5df6a4db
commit 85e2f4ee1b

2
configure vendored
View File

@ -288,7 +288,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]|3.[0-9])
2.95.[2-9]|2.95.[2-9].[0-9]|3.[0-9])
cc_version="$cc_version, ok";;
*) cc_version="$cc_version, bad"; cc_verc_fail=yes;;
esac