Howdy,
The following patch makes Subversion look for an installed APR and
APRUTIL.
Matt
* subversion/ac-helpers/apr.m4
Look for installed APR.
* subversion/ac-helpers/apr-util.m4
Look for installed APRUTIL.
Index: ac-helpers/aprutil.m4
===================================================================
--- ac-helpers/aprutil.m4 (revision 3466)
+++ ac-helpers/aprutil.m4 (working copy)
@@ -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 (revision 3466)
+++ ac-helpers/apr.m4 (working copy)
@@ -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
Received on Wed Oct 23 23:56:21 2002