From cvs-return-1915-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Mon Aug 13 20:07:44 2001 Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 90897 invoked by uid 500); 13 Aug 2001 20:07:43 -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 90861 invoked from network); 13 Aug 2001 20:07:43 -0000 Date: 13 Aug 2001 20:04:28 -0000 Message-ID: <20010813200428.99357.qmail@icarus.apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr configure.in X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N trawick 01/08/13 13:04:28 Modified: . configure.in Log: LINK shouldn't include ALL_LIBS; that puts -lm -lcrypt -lwhatever before -o target, which some link commands can't handle; also, it left us with a lot of duplicate libraries on link invocations since our Makefiles specify the libraries to include too Revision Changes Path 1.355 +1 -1 apr/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.354 retrieving revision 1.355 diff -u -r1.354 -r1.355 --- configure.in 2001/08/05 23:05:37 1.354 +++ configure.in 2001/08/13 20:04:28 1.355 @@ -111,7 +111,7 @@ if test "x$use_libtool" = "xyes"; then lt_compile='$(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE) -c $< && touch $@' - link='$(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(ALL_LDFLAGS) $(ALL_LIBS) -o $@' + link='$(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(ALL_LDFLAGS) -o $@' so_ext='lo' lib_target='-rpath $(libdir) $$objects' export_lib_target='-rpath \$(libdir) \$\$objects'