rse 99/09/27 00:49:01
Modified: src Configure
Log:
Automatically bootstrap the APR source tree now that the majority decided not
to keep `configure' scripts in CVS.
Revision Changes Path
1.6 +4 -0 apache-2.0/src/Configure
Index: Configure
===================================================================
RCS file: /home/cvs/apache-2.0/src/Configure,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Configure 1999/09/27 07:25:07 1.5
+++ Configure 1999/09/27 07:49:00 1.6
@@ -1725,6 +1725,10 @@
## Add in the APR library.
##
if [ -d ./lib/apr ]; then
+ if [ ! -f ./lib/apr/configure ]; then
+ echo " + bootstrapping Apache Portable Runtime (APR)"
+ (cd lib/apr && autoconf)
+ fi
echo " + configuring Apache Portable Runtime (APR)"
cd lib/apr
CC="$CC" CFLAGS="$EXTRA_CFLAGS" ./configure >/dev/null