summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-11-27 22:47:29 +0000
committerterkhen <terkhen@openttd.org>2010-11-27 22:47:29 +0000
commit4b944cb13e6d75662a9246bf06523a320d814ace (patch)
treee33fd0022fdb6fda524161327738ad9c9c5db53d /config.lib
parentae78847f0fe2c0bde677e4a9f2ae26913b9d0f20 (diff)
downloadopenttd-4b944cb13e6d75662a9246bf06523a320d814ace.tar.xz
(svn r21343) -Add: Function that compares strings using case insensitive natural sort.
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.lib b/config.lib
index a3c34f755..c75c55811 100644
--- a/config.lib
+++ b/config.lib
@@ -2803,9 +2803,9 @@ detect_icu() {
log 2 " returned $version"
log 2 " exit code $ret"
- if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$shortversion" -lt "22" ]; then
- if [ -n "$shortversion" ] && [ "$shortversion" -lt "22" ]; then
- log 1 "checking libicu... needs at least version 2.2.0, icu NOT enabled"
+ if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$shortversion" -lt "36" ]; then
+ if [ -n "$shortversion" ] && [ "$shortversion" -lt "36" ]; then
+ log 1 "checking libicu... needs at least version 3.6.0, icu NOT enabled"
else
log 1 "checking libicu... not found"
fi