changeset 14539:5bc4e7b18f54 draft

(svn r19110) -Fix (r19107): if GCC 3.2 has the trouble, then don't allow it
author rubidium <rubidium@openttd.org>
date Fri, 12 Feb 2010 18:45:34 +0000
parents fd036d001515
children b568841a8e39
files config.lib
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/config.lib
+++ b/config.lib
@@ -1150,8 +1150,8 @@
 		# Enable some things only for certain GCC versions
 		cc_version=`$1 -dumpversion | cut -c 1,3`
 
-		if [ $cc_version -lt 32 ]; then
-			log 1 "configure: error: gcc older than 3.2 can't compile OpenTTD because of its poor template support"
+		if [ $cc_version -lt 33 ]; then
+			log 1 "configure: error: gcc older than 3.3 can't compile OpenTTD because of its poor template support"
 			exit 1
 		fi