> I want more for this release. Come on guys, I know you're out there.
FWIW, looks like "make install" needs some more tweaks. Libtool isn't
necessarily in the path, but it should be in the current working dir
(srclib/apr). Patch included. (Unless I am missing something here...)
-- justin
Index: Makefile.in
===================================================================
RCS file: /home/cvspublic/apr/Makefile.in,v
retrieving revision 1.44
diff -u -r1.44 Makefile.in
--- Makefile.in 2001/04/03 20:32:06 1.44
+++ Makefile.in 2001/04/04 04:11:35
@@ -58,7 +58,7 @@
if [ ! -d $(libdir) ]; then \
./build/mkdir.sh $(libdir); \
fi; \
- libtool --mode=install cp $(TARGET_LIB) $(libdir)
+ ./libtool --mode=install cp $(TARGET_LIB) $(libdir)
$(TARGET_LIB):
@for i in $(SUBDIRS); do objects="$$objects $$i/*.lo"; done ; \