summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-02-12 18:45:34 +0000
committerrubidium <rubidium@openttd.org>2010-02-12 18:45:34 +0000
commitc70c16c64ef4e1c06181b1d071593bd2a0cdccda (patch)
treea7681ea79ccd9f4f16dd6f15696e28a2ca9bfce0 /config.lib
parente412dfedcae1bef4c961b0e9ea274bd06a5eb803 (diff)
downloadopenttd-c70c16c64ef4e1c06181b1d071593bd2a0cdccda.tar.xz
(svn r19110) -Fix (r19107): if GCC 3.2 has the trouble, then don't allow it
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 b618a563f..70ad67afe 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 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