Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 96129 invoked by uid 500); 9 Mar 2001 14:37:32 -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 95926 invoked by uid 500); 9 Mar 2001 14:37:27 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 9 Mar 2001 14:37:25 -0000 Message-ID: <20010309143725.95845.qmail@apache.org> From: gstein@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/xml Makefile.in gstein 01/03/09 06:37:24 Modified: build apu-conf.m4 xml Makefile.in Log: apr-util/xml/ should recurse into xml/expat only if we choose to use it. If we use one that has been installed on the system, then we don't want to recurse into our bundled Expat. Revision Changes Path 1.6 +2 -0 apr-util/build/apu-conf.m4 Index: apu-conf.m4 =================================================================== RCS file: /home/cvs/apr-util/build/apu-conf.m4,v retrieving revision 1.5 retrieving revision 1.6 diff -u -u -r1.5 -r1.6 --- apu-conf.m4 2001/02/28 15:18:37 1.5 +++ apu-conf.m4 2001/03/09 14:37:20 1.6 @@ -372,7 +372,9 @@ APU_SUBDIR_CONFIG($bundled_subdir) expat_include_dir=$srcdir/$bundled_subdir/lib expat_libs=$top_builddir/$bundled_subdir/lib/libexpat.la + APR_XML_SUBDIRS="`echo $bundled_subdir | sed -e 's%xml/%%'`" fi +AC_SUBST(APR_XML_SUBDIRS) INCLUDES="$INCLUDES -I$expat_include_dir" LIBS="$LIBS $expat_libs" 1.6 +1 -1 apr-util/xml/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apr-util/xml/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -u -r1.5 -r1.6 --- Makefile.in 2001/03/08 18:30:20 1.5 +++ Makefile.in 2001/03/09 14:37:23 1.6 @@ -1,7 +1,7 @@ TARGETS = apr_xml.lo -SUBDIRS=expat +SUBDIRS = @APR_XML_SUBDIRS@ # bring in rules.mk for standard functionality @INCLUDE_RULES@