You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Jeff Trawick <tr...@attglobal.net> on 2004/03/09 21:50:45 UTC

Re: cvs commit: apr-util Makefile.in

dreid@apache.org wrote:
> dreid       2004/03/09 09:57:35
> 
>   Modified:    .        Makefile.in
>   Log:
>   This seems to have been lost in the changeover. If there is another
>   way of accomplishing this then I failed to find one and the code
>   in configure seems to point at this being a simple oversight.
>   
>   With this small patch we can build on beos again.
>   
>   Revision  Changes    Path
>   1.85      +2 -1      apr-util/Makefile.in
>   
>   Index: Makefile.in
>   ===================================================================
>   RCS file: /home/cvs/apr-util/Makefile.in,v
>   retrieving revision 1.84
>   retrieving revision 1.85
>   diff -u -r1.84 -r1.85
>   --- Makefile.in	21 Feb 2004 00:43:56 -0000	1.84
>   +++ Makefile.in	9 Mar 2004 17:57:35 -0000	1.85
>   @@ -17,6 +17,7 @@
>    TARGET_LIB = lib@APRUTIL_LIBNAME@.la
>    INSTALL_SUBDIRS = @APR_XML_DIR@
>    EXTRA_SOURCE_DIRS = @APR_XML_DIR@
>   +EXTRA_OS_LINK=@EXTRA_OS_LINK@
>    
>    TARGETS = $(TARGET_LIB) aprutil.exp export_vars.h
>    
>   @@ -69,7 +70,7 @@
>    	chmod 755 $(DESTDIR)$(bindir)/apu-config
>    
>    $(TARGET_LIB): $(OBJECTS)
>   -	$(LINK) @lib_target@ $(ALL_LIBS)
>   +	$(LINK) @lib_target@ $(ALL_LIBS) $(EXTRA_OS_LINK)

Thanks, David!  When I finally got python installed on my aix boxes, apr-util 
1.0 apps were busted due to missing libraries.  This resolved it.