You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-dev@httpd.apache.org by "Philip M. Gollucci" <pg...@p6m7g8.com> on 2005/04/10 00:00:10 UTC

[PATCH[ fix automake warning

./buildconf
[....]
library/t/Makefile.am:2: `LDFLAGS' is a user variable, you should not 
override it;
library/t/Makefile.am:2: use `AM_LDFLAGS' instead.

Index: library/t/Makefile.am
===================================================================
--- library/t/Makefile.am       (revision 160535)
+++ library/t/Makefile.am       (working copy)
@@ -1,5 +1,5 @@
  AM_CPPFLAGS = @APR_INCLUDES@
-LDFLAGS = @APR_LTFLAGS@ `@APREQ_CONFIG@ --link-libtool --libs`
+AM_LDFLAGS = @APR_LTFLAGS@ `@APREQ_CONFIG@ --link-libtool --libs`
  noinst_LIBRARIES = libapache_test.a
  libapache_test_a_SOURCES = at.h at.c

-- 
END
------------------------------------------------------
Philip M. Gollucci (pgollucci@p6m7g8.com) 301.254.5198
Consultant / http://p6m7g8.net/Resume/resume.shtml

Re: [PATCH[ fix automake warning

Posted by "Philip M. Golllucci" <pg...@p6m7g8.com>.
Joe Schaefer wrote:
> "Philip M. Gollucci" <pg...@p6m7g8.com> writes:
> 
> 
>>Index: library/t/Makefile.am
>>===================================================================
>>--- library/t/Makefile.am       (revision 160535)
>>+++ library/t/Makefile.am       (working copy)
>>@@ -1,5 +1,5 @@
>>  AM_CPPFLAGS = @APR_INCLUDES@
>>-LDFLAGS = @APR_LTFLAGS@ `@APREQ_CONFIG@ --link-libtool --libs`
>>+AM_LDFLAGS = @APR_LTFLAGS@ `@APREQ_CONFIG@ --link-libtool --libs`
>>  noinst_LIBRARIES = libapache_test.a
>>  libapache_test_a_SOURCES = at.h at.c
> 
> 
> This doesn't work for me with automake 1.4; but it's ok with 1.6.3.
> I don't mind bumping the prereq to 1.6; what version are you using?
> 
Actually I use 1.9 and I tested 1.4p3 .
Strange.

P.S.
	I much more concerned about my previous libexpat patch

Thanks!


-- 
END
------------------------------------------------------------------------------ 

Philip M. Gollucci
Consultant
E-Mail: pgollucci@p6m7g8.com
URL   : http://p6m7g8.net/Resume/resume.shtml
Phone : 301.254.5198

$Id: .signature,v 1.7 2004/09/05 23:46:37 philip Exp $


Re: [PATCH[ fix automake warning

Posted by Joe Schaefer <jo...@sunstarsys.com>.
"Philip M. Gollucci" <pg...@p6m7g8.com> writes:

> Index: library/t/Makefile.am
> ===================================================================
> --- library/t/Makefile.am       (revision 160535)
> +++ library/t/Makefile.am       (working copy)
> @@ -1,5 +1,5 @@
>   AM_CPPFLAGS = @APR_INCLUDES@
> -LDFLAGS = @APR_LTFLAGS@ `@APREQ_CONFIG@ --link-libtool --libs`
> +AM_LDFLAGS = @APR_LTFLAGS@ `@APREQ_CONFIG@ --link-libtool --libs`
>   noinst_LIBRARIES = libapache_test.a
>   libapache_test_a_SOURCES = at.h at.c

This doesn't work for me with automake 1.4; but it's ok with 1.6.3.
I don't mind bumping the prereq to 1.6; what version are you using?

-- 
Joe Schaefer