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.
Index: apr/build/buildcheck.sh =================================================================== RCS file: /cvs/apache/apr/build/buildcheck.sh,v retrieving revision 1.1 diff -u -d -r1.1 buildcheck.sh --- buildcheck.sh 2001/03/24 06:48:04 1.1 +++ buildcheck.sh 2001/03/30 08:37:25 @@ -30,7 +30,7 @@ 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 Victor -- Victor J. Orlikowski ====================== [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
