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
|