libtool 1.3d just got released yesterday, prompting me to check out the detection code. Repeat after me: never let Victor write shell code. Here are the repairs, plus the check for 1.3d.
Index: srclib/apr/build/buildcheck.sh =================================================================== RCS file: /home/cvspublic/apr/build/buildcheck.sh,v retrieving revision 1.3 diff -u -d -r1.3 buildcheck.sh --- srclib/apr/build/buildcheck.sh 2001/04/03 00:39:09 1.3 +++ srclib/apr/build/buildcheck.sh 2001/04/04 08:31:55 @@ -31,7 +31,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" || test "$2" = "3" -a "$3" -ge "b" +if test "$1" -gt "1" || test "$2" -gt "3" || test "$2" = "3" -a "$3" -ge "3" || test "$2" = "3" -a "$3" = "b" || test "$2" = "3" -a "$3" = "d" then echo "buildconf: libtool version $lt_pversion (ok)" else Victor -- Victor J. Orlikowski ====================== [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
