From 60b5595e738b8148dee3ccc4e661d412a2fadf81 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Wed, 25 Mar 2009 08:43:28 +0000 Subject: [PATCH] * configure.in: Allow configure to be built without find_apu.m4, at least temporarily to allow buildconf against apr trunk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@758177 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 39b1dc8fd3..3bfef5106c 100644 --- a/configure.in +++ b/configure.in @@ -120,7 +120,12 @@ if test "x${apr_major_version}" = "x2"; then elif test "x$with_included_apr" = "xyes"; then apu_found=reconfig else - APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util", 1, ${apr_major_version}) + dnl If httpd is buildconf'ed against an apr 2.x tree, then 1.x + dnl isn't supported. + ifdef([APR_FIND_APU], [ + APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util", + 1, ${apr_major_version}) + ], [apu_found=no]) fi if test "$apu_found" = "no"; then -- 2.50.1