Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 7661 invoked by uid 500); 11 Dec 2001 17:46:33 -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 7650 invoked by uid 500); 11 Dec 2001 17:46:33 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 11 Dec 2001 17:46:32 -0000 Message-ID: <20011211174632.44324.qmail@icarus.apache.org> From: jerenkrantz@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util Makefile.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jerenkrantz 01/12/11 09:46:32 Modified: . Makefile.in . Makefile.in Log: Okay, back out the libtool dependency stuff. We need to figure out what AIX can support or not. Since I don't have AIX, I have no way of doing any further research, so this needs to be reverted. Revision Changes Path 1.64 +1 -2 apr/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apr/Makefile.in,v retrieving revision 1.63 retrieving revision 1.64 diff -u -r1.63 -r1.64 --- Makefile.in 2001/12/11 01:42:10 1.63 +++ Makefile.in 2001/12/11 17:46:32 1.64 @@ -18,7 +18,6 @@ INSTALL_SUBDIRS=@INSTALL_SUBDIRS@ TARGET_LIB = libapr.la -DEPEND_LIBS = @EXTRA_LIBS@ @LIBTOOL_LIBS@ # # Rules for building specific targets, starting with 'all' for @@ -76,7 +75,7 @@ $(TARGET_LIB): @for i in $(SUBDIRS); do objects="$$objects $$i/*.@so_ext@"; done ; \ - tmpcmd="$(LINK) @lib_target@ $(DEPEND_LIBS)"; \ + tmpcmd="$(LINK) @lib_target@"; \ echo $$tmpcmd; \ $$tmpcmd 1.53 +1 -2 apr-util/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apr-util/Makefile.in,v retrieving revision 1.52 retrieving revision 1.53 diff -u -r1.52 -r1.53 --- Makefile.in 2001/12/11 01:45:44 1.52 +++ Makefile.in 2001/12/11 17:46:32 1.53 @@ -6,7 +6,6 @@ INCLUDES=-I./include -I../include -I@APR_SOURCE_DIR@/include TARGET_LIB = libaprutil.la -DEPEND_LIBS=@LIBS@ INSTALL_SUBDIRS = @APR_XML_DIR@ TARGETS = delete-lib $(TARGET_LIB) delete-exports aprutil.exp export_vars.h @@ -59,7 +58,7 @@ $(TARGET_LIB): @objects="`find $(SUBDIRS) -name expat -prune -o -name 'gen_uri_delims.@so_ext@' -prune -o -name '*.@so_ext@' -print`"; \ - tmpcmd="$(LINK) @lib_target@ @EXTRA_OS_LINK@ $(DEPEND_LIBS)"; \ + tmpcmd="$(LINK) @lib_target@ @EXTRA_OS_LINK@"; \ echo $$tmpcmd; \ $$tmpcmd