summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-02-12 18:41:46 +0000
committerrubidium <rubidium@openttd.org>2010-02-12 18:41:46 +0000
commitad7a139f49a2ea13fb9199d4c38c73b824d486cc (patch)
tree8ed51deb8fa1ce74257f6ae42b7d3e5d47e9c2fe /config.lib
parent3108101cb2bbacc31dea7053a96cf52c44d8965a (diff)
downloadopenttd-ad7a139f49a2ea13fb9199d4c38c73b824d486cc.tar.xz
(svn r19107) -Change: GCC 3.2 seems to be having trouble with some templates too
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.lib b/config.lib
index 86ac07d97..b618a563f 100644
--- a/config.lib
+++ b/config.lib
@@ -1150,8 +1150,8 @@ make_compiler_cflags() {
# Enable some things only for certain GCC versions
cc_version=`$1 -dumpversion | cut -c 1,3`
- if [ $cc_version -lt 30 ]; then
- log 1 "configure: error: gcc older than 3.0 can't compile OpenTTD because of its poor template support"
+ 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"
exit 1
fi