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

Re: [PATCH] configure does not find apr{,-util} in /usr/local/apache2

From: Karl Fogel <kfogel_at_newton.ch.collab.net>
Date: 2002-08-05 22:09:15 CEST

Eric Gillespie <epg@pretzelnet.org> writes:
> The problem was that the apr macros don't search the standard paths
> unless a third argument of 1 is passed to them, that's kinda silly,
> but this is a simple fix.

Applying this seems desirable to me, but then I'm not much of an apr
configury expert. Before I commit, does anyone see a reason not to
apply this patch?

-Karl

> Index: ./ac-helpers/aprutil.m4
> ===================================================================
> --- ./ac-helpers/aprutil.m4
> +++ ./ac-helpers/aprutil.m4 Wed Jun 12 14:59:53 2002
> @@ -14,7 +14,7 @@
> [
> AC_MSG_NOTICE([Apache Portable Runtime Utility (APRUTIL) library configuration])
>
> - APR_FIND_APU("$srcdir/apr-util", "./apr-util")
> + APR_FIND_APU("$srcdir/apr-util", "./apr-util", 1)
>
> if test $apu_found = "no"; then
> AC_MSG_WARN([APRUTIL not found])
> Index: ./ac-helpers/apr.m4
> ===================================================================
> --- ./ac-helpers/apr.m4
> +++ ./ac-helpers/apr.m4 Wed Jun 12 14:59:15 2002
> @@ -9,7 +9,7 @@
> [
> AC_MSG_NOTICE([Apache Portable Runtime (APR) library configuration])
>
> - APR_FIND_APR("$srcdir/apr", "./apr")
> + APR_FIND_APR("$srcdir/apr", "./apr", 1)
>
> if test $apr_found = "no"; then
> AC_MSG_WARN([APR not found])
>
> ---------------------------------------------------------------------
> 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 Mon Aug 5 22:25:03 2002

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.