[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Makefile patch

From: Karl Fogel <kfogel_at_newton.ch.collab.net>
Date: 2001-12-04 16:50:11 CET

Marko Kreen <marko@l-t.ee> writes:
> I have Apache and Subversion under same tree, and when compiling
> 0.7 it picked up 0.6 headers. This fixes it.

Marko,

Thanks. Could you describe the exact symptoms you saw, and how this
patch changed them? We've been bitten before by not being careful
enough with this stuff :-), so believe it or not, even a trivial patch
such as this this will need to be thoroughly understood and tested
before applying.

For example, Mike Pilato points out that maybe the reason
$(APACHE_INCLUDES) come first is so they'll dominate when compiling on
a system that has an older version of httpd installed somewhere (i.e.,
using httpd 2.0 experimentally on a system where at least one earlier
version of httpd is also installed, which is probably the majority of
cases).

-Karl

> Index: ./Makefile.in
> ===================================================================
> --- ./.svn/text-base/Makefile.in.svn-base Tue Dec 4 04:10:14 2001
> +++ ./Makefile.in Tue Dec 4 17:06:41 2001
> @@ -65,7 +65,7 @@
> COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(INCLUDES)
> LT_COMPILE = $(LIBTOOL) $(LTFLAGS) --mode=compile $(COMPILE) -o $@ -c $<
>
> -COMPILE_APACHE_MOD = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CFLAGS) $(APACHE_INCLUDES) $(INCLUDES) -o $@ -c $<
> +COMPILE_APACHE_MOD = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CFLAGS) $(INCLUDES) $(APACHE_INCLUDES) -o $@ -c $<
>
> LINK = $(LIBTOOL) $(LTFLAGS) --mode=link $(LT_LDFLAGS) $(COMPILE) $(LDFLAGS) -rpath $(libdir)
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:51 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.