From ecbea848845f87156969c7ae0f1e66e91a78bd23 Mon Sep 17 00:00:00 2001 From: Wilfredo Sanchez Date: Fri, 29 Nov 2002 07:34:20 +0000 Subject: [PATCH] Find apr, apr-util automatically if no --with-apr{-util} flag, same as other libs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97674 13f79535-47bb-0310-9956-ffa450edef68 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 60e9e03699..47910312d7 100644 --- a/configure.in +++ b/configure.in @@ -61,7 +61,7 @@ orig_prefix="$prefix" echo $ac_n "${nl}Configuring Apache Portable Runtime library ...${nl}" -APR_FIND_APR("$srcdir/srclib/apr", "./srclib/apr") +APR_FIND_APR("$srcdir/srclib/apr", "./srclib/apr", 1) if test "$apr_found" = "no"; then AC_MSG_ERROR([APR not found. Please read the documentation.]) @@ -84,7 +84,7 @@ APR_INCLUDEDIR=`$apr_config --includes | sed 's|^.*-I\([[^ ]]*apr[[^ ]]*\).*$|\1 echo $ac_n "${nl}Configuring Apache Portable Runtime Utility library...${nl}" -APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util") +APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util", 1) if test "$apu_found" = "no"; then AC_MSG_ERROR([APR-util not found. Please read the documentation.]) -- 2.40.0