Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 95082 invoked by uid 500); 14 Dec 2001 21:43:06 -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 94993 invoked from network); 14 Dec 2001 21:43:05 -0000 Date: 14 Dec 2001 21:43:04 -0000 Message-ID: <20011214214304.66979.qmail@icarus.apache.org> From: trawick@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr Makefile.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N trawick 01/12/14 13:43:04 Modified: . Makefile.in Log: fix the name of the shared library for libapr on AIX once we switched to run-time linking, libtool decided we wanted to use a .so file instead of an archive Revision Changes Path 1.68 +1 -1 apr/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apr/Makefile.in,v retrieving revision 1.67 retrieving revision 1.68 diff -u -r1.67 -r1.68 --- Makefile.in 2001/12/12 19:35:06 1.67 +++ Makefile.in 2001/12/14 21:43:04 1.68 @@ -102,7 +102,7 @@ $(AWK) -f $(top_srcdir)/build/make_var_export.awk $(EXPORT_FILES) > $@ apr.exp: exports.c export_vars.h - @echo "#! libapr.a(libapr.so.0)" > $@ + @echo "#! libapr.so" > $@ @echo "* This file was AUTOGENERATED at build time." >> $@ @echo "* Please do not edit by hand." >> $@ $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@