You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2005/05/24 14:15:24 UTC

svn commit: r178157 - /apr/apr-util/branches/1.0.x/Makefile.in

Author: trawick
Date: Tue May 24 05:15:23 2005
New Revision: 178157

URL: http://svn.apache.org/viewcvs?rev=178157&view=rev
Log:
Fix embedded name of libaprutil in aprutil.exp.  This
broke (or forced a symlink work-around) some third-
party Apache modules on AIX, since the libaprutil name
they referenced didn't match the installed library.

Submitted by:   Eric Covener
Reviewed by:    Jeff Trawick

Modified:
    apr/apr-util/branches/1.0.x/Makefile.in

Modified: apr/apr-util/branches/1.0.x/Makefile.in
URL: http://svn.apache.org/viewcvs/apr/apr-util/branches/1.0.x/Makefile.in?rev=178157&r1=178156&r2=178157&view=diff
==============================================================================
--- apr/apr-util/branches/1.0.x/Makefile.in (original)
+++ apr/apr-util/branches/1.0.x/Makefile.in Tue May 24 05:15:23 2005
@@ -78,7 +78,7 @@
 	$(APR_MKVAREXPORT) $(HEADERS) > $@
 
 aprutil.exp: exports.c export_vars.c
-	@echo "#! libaprutil.so" > $@
+	@echo "#! lib@APRUTIL_LIBNAME@.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/' >> $@