trawick 01/04/02 12:01:10
Modified: . CHANGES
build buildcheck.sh
Log:
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
Revision Changes Path
1.80 +2 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- CHANGES 2001/03/31 22:32:46 1.79
+++ CHANGES 2001/04/02 19:01:09 1.80
@@ -1,5 +1,7 @@
Changes with APR b1
+ *) Allow libtool 1.3b to be used. [Victor Orlikowski]
+
*) Misc. Win32 fixes: Set the pool pointer in apr_sockaddr_t
structures created with the apr_socket_t to prevent segfault
in certain apps. Flush unwritten buffered data when the file
1.2 +1 -1 apr/build/buildcheck.sh
Index: buildcheck.sh
===================================================================
RCS file: /home/cvs/apr/build/buildcheck.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildcheck.sh 2001/03/24 06:48:04 1.1
+++ buildcheck.sh 2001/04/02 19:01:10 1.2
@@ -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