aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJonathan Gray2006-01-28 07:31:53 +0000
committerJonathan Gray2006-01-28 07:31:53 +0000
commit56ce100b4f4cf28966b8ebe14ba59a49edbf7081 (patch)
tree7449ff5882fcd92317624bdee16d89126ab78bcc /configure
parent3730bc19ebf236b339fc3d32ac6f13e017f64970 (diff)
downloadscummvm-rg350-56ce100b4f4cf28966b8ebe14ba59a49edbf7081.tar.gz
scummvm-rg350-56ce100b4f4cf28966b8ebe14ba59a49edbf7081.tar.bz2
scummvm-rg350-56ce100b4f4cf28966b8ebe14ba59a49edbf7081.zip
Compilation has been busted on GCC 2.xx for some time. Don't
pretend to support it in configure. svn-id: r20264
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 9 insertions, 8 deletions
diff --git a/configure b/configure
index 3da4344864..7a63b984c2 100755
--- a/configure
+++ b/configure
@@ -557,19 +557,20 @@ if test "$?" -gt 0; then
fi
case $cxx_version in
- 2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9]|3.[0-9].[0-9][-.]*|4.[0-9].[0-9]|4.[0-9].[0-9][-.]*)
+# 2.95.[2-9]|2.95.[2-9][-.]*|3.[0-9]|3.[0-9].[0-9]|3.[0-9].[0-9][-.]*|4.[0-9].[0-9]|4.[0-9].[0-9][-.]*)
+ 3.[0-9]|3.[0-9].[0-9]|3.[0-9].[0-9][-.]*|4.[0-9].[0-9]|4.[0-9].[0-9][-.]*)
_cxx_major=`echo $cxx_version | cut -d '.' -f 1`
_cxx_minor=`echo $cxx_version | cut -d '.' -f 2`
cxx_version="$cxx_version, ok"
cxx_verc_fail=no
;;
# whacky beos version strings
- 2.9-beos-991026*|2.9-beos-000224*)
- _cxx_major=2
- _cxx_minor=95
- cxx_version="$cxx_version, ok"
- cxx_verc_fail=no
- ;;
+# 2.9-beos-991026*|2.9-beos-000224*)
+# _cxx_major=2
+# _cxx_minor=95
+# cxx_version="$cxx_version, ok"
+# cxx_verc_fail=no
+# ;;
3_4)
_cxx_major=3
_mxx_minor=4
@@ -588,7 +589,7 @@ echo "$cxx_version"
if test "$cxx_verc_fail" = yes ; then
echo
echo "The version of your compiler is not supported at this time"
- echo "Please ensure you are using GCC 2.95.x or GCC 3.x"
+ echo "Please ensure you are using GCC >= 3.x"
exit 1
fi