summaryrefslogtreecommitdiff
path: root/config.lib
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2012-10-17 15:23:51 +0000
committerrubidium <rubidium@openttd.org>2012-10-17 15:23:51 +0000
commit295c0b71effe1ca7af70f7d1f65b9ebd52592d83 (patch)
tree2329d1bcd6c74b1383cca560fcb6792ee56ed2a3 /config.lib
parent66ee5802060dfb87a4cf09ff21a1be11e6593f6e (diff)
downloadopenttd-295c0b71effe1ca7af70f7d1f65b9ebd52592d83.tar.xz
(svn r24598) -Fix: configure script failed to detect libfontconfig 2.10 as newer than 2.3
Diffstat (limited to 'config.lib')
-rw-r--r--config.lib38
1 files changed, 32 insertions, 6 deletions
diff --git a/config.lib b/config.lib
index 6423d3e5f..13b31341c 100644
--- a/config.lib
+++ b/config.lib
@@ -2147,6 +2147,30 @@ check_makedepend() {
log 1 "checking makedepend... $makedepend"
}
+check_version() {
+ # $1 - requested version (major.minor)
+ # $2 - version we got (major.minor)
+
+ if [ -z "$2" ]; then
+ return 0
+ fi
+
+ req_major=`echo $1 | cut -d. -f1`
+ got_major=`echo $2 | cut -d. -f1`
+ if [ $got_major -lt $req_major ]; then
+ return 0
+ elif [ $got_major -gt $req_major ]; then
+ return 1
+ fi
+
+ req_minor=`echo $1 | cut -d. -f2`
+ got_minor=`echo $2 | cut -d. -f2`
+ if [ $got_minor -lt $req_minor ]; then
+ return 0
+ fi
+ return 1
+}
+
detect_awk() {
# Not all awks allow gsub(), so we test for that here! It is in fact all we need...
@@ -2832,13 +2856,14 @@ detect_fontconfig() {
version=`$fontconfig_config --modversion 2>/dev/null`
ret=$?
- shortversion=`echo $version | cut -c 1,3`
+ check_version '2.3' "$version"
+ version_ok=$?
log 2 "executing $fontconfig_config --modversion"
log 2 " returned $version"
log 2 " exit code $ret"
- if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$shortversion" -le "22" ]; then
- if [ -n "$shortversion" ] && [ "$shortversion" -le "22" ]; then
+ if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version_ok" != "1" ]; then
+ if [ -n "$version" ] && [ "$version_ok" != "1" ]; then
log 1 "checking libfontconfig... needs at least version 2.3.0, fontconfig NOT enabled"
else
log 1 "checking libfontconfig... not found"
@@ -2881,13 +2906,14 @@ detect_icu() {
version=`$icu_config --version 2>/dev/null`
ret=$?
- shortversion=`echo $version | cut -d\. -f1,2 | sed "s/\.//g" | cut -c1-2`
+ check_version '3.6' "$version"
+ version_ok=$?
log 2 "executing $icu_config --version"
log 2 " returned $version"
log 2 " exit code $ret"
- if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$shortversion" -lt "36" ]; then
- if [ -n "$shortversion" ] && [ "$shortversion" -lt "36" ]; then
+ if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version_ok" != "1" ]; then
+ if [ -n "$version" ] && [ "$version_ok" != "1" ]; then
log 1 "checking libicu... needs at least version 3.6.0, icu NOT enabled"
else
log 1 "checking libicu... not found"