diff options
author | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-02 19:01:10 +0000 |
---|---|---|
committer | trawick <trawick@13f79535-47bb-0310-9956-ffa450edef68> | 2001-04-02 19:01:10 +0000 |
commit | 461206adcc156236f4437c9723b26480560441c4 (patch) | |
tree | 70c78571f5f40b75f5ddf58622dad14669d60f43 /build | |
parent | f83659cf1ec26f6f42e2b79c0ea954c4746c8e14 (diff) | |
download | libapr-461206adcc156236f4437c9723b26480560441c4.tar.gz |
Libtool 1.3b, the current alpha release, is needed for creating DSOs
on certain platforms, i.e. AIX.
This patch simply allows us to use 1.3b and not complain.
Submitted by: Victor Orlikowski
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61428 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rwxr-xr-x | build/buildcheck.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/buildcheck.sh b/build/buildcheck.sh index 091a17be3..5bd685b16 100755 --- a/build/buildcheck.sh +++ b/build/buildcheck.sh @@ -30,7 +30,7 @@ exit 1 fi lt_version=`echo $lt_pversion|sed -e 's/\([a-z]*\)$/.\1/'` IFS=.; set $lt_version; IFS=' ' -if test "$1" -gt "1" || test "$2" -gt "3" || test "$2" = "3" -a "$3" -ge "3" +if test "$1" -gt "1" || test "$2" -gt "3" || test "$2" = "3" -a "$3" -ge "3" || test "$2" = "3" -a "$3" -ge "b" then echo "buildconf: libtool version $lt_pversion (ok)" else |