Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 51441 invoked by uid 500); 22 Aug 2001 22:31:21 -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 51430 invoked by uid 500); 22 Aug 2001 22:31:21 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 22 Aug 2001 22:25:47 -0000 Message-ID: <20010822222547.84236.qmail@icarus.apache.org> From: ianh@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/test Makefile.in X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N ianh 01/08/22 15:25:47 Modified: test Makefile.in Log: APRUTIL_EXPORT_LIBS contains the libraries required for the dbm and other stuff required to build. tests should now build when non-default dbm chosen Revision Changes Path 1.15 +5 -4 apr-util/test/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apr-util/test/Makefile.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- Makefile.in 2001/08/22 21:32:14 1.14 +++ Makefile.in 2001/08/22 22:25:47 1.15 @@ -5,25 +5,26 @@ # bring in rules.mk for standard functionality @INCLUDE_RULES@ +ALL_LIBS += @APRUTIL_EXPORT_LIBS@ test: $(PROGRAMS) testdbm_OBJECTS = testdbm.lo -testdbm_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la ../xml/expat/lib/libexpat.la +testdbm_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la testdbm: $(testdbm_OBJECTS) $(testdbm_LDADD) $(LINK) $(testdbm_OBJECTS) $(testdbm_LDADD) $(ALL_LIBS) testdate_OBJECTS = testdate.lo -testdate_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la ../xml/expat/lib/libexpat.la +testdate_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la testdate: $(testdate_OBJECTS) $(testdate_LDADD) $(LINK) $(testdate_OBJECTS) $(testdate_LDADD) $(ALL_LIBS) testxml_OBJECTS = testxml.lo -testxml_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la ../xml/expat/lib/libexpat.la +testxml_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la testxml: $(testxml_OBJECTS) $(testxml_LDADD) $(LINK) $(testxml_OBJECTS) $(testxml_LDADD) $(ALL_LIBS) testmd4_OBJECTS = testmd4.lo -testmd4_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la ../xml/expat/lib/libexpat.la +testmd4_LDADD = ../libaprutil.la @APR_SOURCE_DIR@/libapr.la testmd4: $(testmd4_OBJECTS) $(testmd4_LDADD) $(LINK) $(testmd4_OBJECTS) $(testmd4_LDADD) $(ALL_LIBS)