summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2012-09-23 14:11:02 +0000
committerJeff Trawick <trawick@apache.org>2012-09-23 14:11:02 +0000
commitd5eedd1a20be348760ec1e398649693481297e04 (patch)
tree3de239bd7e34cb86f6c6770555bdafd138d3159b /buildconf
parentf696d241c7f75a29314a74485566f80c976bf0cd (diff)
downloadhttpd-d5eedd1a20be348760ec1e398649693481297e04.tar.gz
consolidate hints/instructions about using APR (and maybe APR-util) with httpd
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1389060 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf14
1 files changed, 4 insertions, 10 deletions
diff --git a/buildconf b/buildconf
index a58845d7c4..652454018e 100755
--- a/buildconf
+++ b/buildconf
@@ -81,12 +81,9 @@ done
if [ $apr_found -lt 1 ]; then
echo ""
- 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] :"
+ echo "APR could not be found automatically."
echo ""
- echo " svn co http://svn.apache.org/repos/asf/apr/apr/trunk srclib/apr"
+ echo "Please refer to the documentation on APR in the httpd INSTALL file."
echo ""
should_exit=1
else
@@ -113,12 +110,9 @@ if [ $apr_major_version -lt 2 ] ; then
if [ $apu_found -lt 1 ]; then
echo ""
- 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]:"
+ echo "You are using APR 1.x but APR-util 1.x was not found."
echo ""
- echo " svn co http://svn.apache.org/repos/asf/apr/apr-util/branches/1.5.x srclib/apr-util"
+ echo "Please refer to the documentation on APR in the httpd INSTALL file."
echo ""
should_exit=1
fi