aaron 01/12/10 15:20:38
Modified: . configure.in
Log:
Fix to allow VPATH builds. The export lists are created in the build dirs.
The Beos fix is untested, so please verify.
Revision Changes Path
1.38 +2 -2 apr-util/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/apr-util/configure.in,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- configure.in 2001/12/01 17:43:52 1.37
+++ configure.in 2001/12/10 23:20:38 1.38
@@ -67,13 +67,13 @@
# Horrible Hack !!!
# if we're building on BeOS then we need to add in the
# apr and expat libraries to the build... Grrrr...
- EXTRA_OS_LINK="$APR_SOURCE_DIR/libapr.la
$top_builddir/xml/expat/lib/libexpat.la"
+ EXTRA_OS_LINK="$APR_BUILD_DIR/libapr.la
$top_builddir/xml/expat/lib/libexpat.la"
;;
AIX)
# On AIX, since shared library aprutil depends on shared library apr we
# have to specify an import file for apr. But of course libtool should
# do this for us. Darn...
- EXTRA_OS_LINK="-Wl,-bI:$APR_SOURCE_DIR/apr.exp"
+ EXTRA_OS_LINK="-Wl,-bI:$APR_BUILD_DIR/apr.exp"
;;
*)
;;