trawick 2002/08/12 10:30:11
Modified: . CHANGES Makefile.in
Log:
Install libaprutil support libraries before installing libaprutil
itself, since on some platforms libaprutil is relinked during
make install and the support libraries need to exist already.
Revision Changes Path
1.72 +5 -0 apr-util/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr-util/CHANGES,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- CHANGES 5 Aug 2002 03:31:58 -0000 1.71
+++ CHANGES 12 Aug 2002 17:30:11 -0000 1.72
@@ -1,5 +1,10 @@
Changes with APR-util b1
+ *) Install libaprutil support libraries before installing libaprutil
+ itself, since on some platforms libaprutil is relinked during
+ make install and the support libraries need to exist already.
+ [Jeff Trawick]
+
*) Added a Resource List API for threadsafe access to persistent
and dynamically created user-defined resources. [Aaron Bannert]
1.73 +3 -3 apr-util/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/apr-util/Makefile.in,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- Makefile.in 1 Aug 2002 05:29:22 -0000 1.72
+++ Makefile.in 12 Aug 2002 17:30:11 -0000 1.73
@@ -62,6 +62,9 @@
if [ ! -d $(DESTDIR)$(libdir) ]; then \
@APR_SOURCE_DIR@/build/mkdir.sh $(DESTDIR)$(libdir); \
fi;
+ list='$(INSTALL_SUBDIRS)'; for i in $$list; do \
+ ( cd $$i ; $(MAKE) DESTDIR=$(DESTDIR) install ); \
+ done
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(DESTDIR)$(libdir)
$(LIBTOOL) --mode=install cp aprutil.exp $(DESTDIR)$(libdir)
if [ ! -d $(DESTDIR)$(bindir) ]; then \
@@ -69,9 +72,6 @@
fi;
$(LIBTOOL) --mode=install cp apu-config $(DESTDIR)$(bindir)
chmod 755 $(DESTDIR)$(bindir)/apu-config
- list='$(INSTALL_SUBDIRS)'; for i in $$list; do \
- ( cd $$i ; $(MAKE) DESTDIR=$(DESTDIR) install ); \
- done
$(TARGET_LIB):
@objects="`find $(SUBDIRS) -name expat -prune -o -name '[EMAIL
PROTECTED]@' -prune -o -name '[EMAIL PROTECTED]@' -print`"; \