From: Wilfredo Sanchez Date: Fri, 29 Nov 2002 07:34:20 +0000 (+0000) Subject: Find apr, apr-util automatically if no --with-apr{-util} flag, same as other libs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ecbea848845f87156969c7ae0f1e66e91a78bd23;p=apache 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 --- 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.])