diff options
author | Paul Querna <pquerna@apache.org> | 2005-03-20 05:26:22 +0000 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2005-03-20 05:26:22 +0000 |
commit | cb9a513b734bc188136c415cb4c3bc34fdff81c2 (patch) | |
tree | 6520e69fd6b16609ee3db7258de84142b62d3878 /buildconf | |
parent | 9cd4bcbe377a2fa594bf72c1927b489d6428c32c (diff) | |
download | httpd-cb9a513b734bc188136c415cb4c3bc34fdff81c2.tar.gz |
Test for APR and APR-Util one directory bellow httpd too. I like not having to put them inside srclib.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@158303 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-x | buildconf | 35 |
1 files changed, 29 insertions, 6 deletions
@@ -21,8 +21,8 @@ # set a couple of defaults for where we should be looking for our support libs. # can be overridden with --with-apr=[dir] and --with-apr-util=[dir] -apr_src_dir=srclib/apr -apu_src_dir=srclib/apr-util +apr_src_dir="srclib/apr ../apr" +apu_src_dir="srclib/apr-util ../apr-util" while test $# -gt 0 do @@ -52,10 +52,22 @@ done # should_exit=0 +apr_found=0 +apu_found=0 -if [ ! -d "$apr_src_dir" -o ! -f "$apr_src_dir/build/apr_common.m4" ]; then +for dir in $apr_src_dir +do + if [ -d "${dir}" -a -f "${dir}/build/apr_common.m4" ]; then + echo "found apr source: ${dir}" + apr_src_dir=$dir + apr_found=1 + break + fi +done + +if [ $apr_found -lt 1 ]; then echo "" - echo "You don't have a copy of the apr source in $apr_src_dir. " + echo "You don't have a copy of the apr source in srclib/apr. " echo "Please get the source using the following instructions," echo "or specify the location of the source with " echo "--with-apr=[path to apr] :" @@ -64,9 +76,20 @@ if [ ! -d "$apr_src_dir" -o ! -f "$apr_src_dir/build/apr_common.m4" ]; then echo "" should_exit=1 fi -if [ ! -d "$apu_src_dir" -o ! -f "$apu_src_dir/Makefile.in" ]; then + +for dir in $apu_src_dir +do + if [ -d "${dir}" -a -f "${dir}/Makefile.in" ]; then + echo "found apr-util source: ${dir}" + apu_src_dir=$dir + apu_found=1 + break + fi +done + +if [ $apu_found -lt 1 ]; then echo "" - echo "You don't have a copy of the apr-util source in $apu_src_dir. " + echo "You don't have a copy of the apr-util source in srclib/apr-util. " echo "Please get one the source using the following instructions, " echo "or specify the location of the source with " echo "--with-apr-util=[path to apr-util]:" |