From cvs-return-2516-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Mon Dec 10 23:40:44 2001 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 58918 invoked by uid 500); 10 Dec 2001 23:40:44 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 58907 invoked by uid 500); 10 Dec 2001 23:40:44 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 10 Dec 2001 23:20:38 -0000 Message-ID: <20011210232038.20773.qmail@icarus.apache.org> From: aaron@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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" ;; *) ;;