Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 16773 invoked from network); 9 Feb 2011 12:14:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Feb 2011 12:14:04 -0000 Received: (qmail 44637 invoked by uid 500); 9 Feb 2011 12:14:03 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 43893 invoked by uid 500); 9 Feb 2011 12:14:00 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 43289 invoked by uid 99); 9 Feb 2011 12:13:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Feb 2011 12:13:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Feb 2011 12:13:58 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CBACD23888D2; Wed, 9 Feb 2011 12:13:38 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1068857 - /httpd/httpd/branches/2.2.x/buildconf Date: Wed, 09 Feb 2011 12:13:38 -0000 To: cvs@httpd.apache.org From: fuankg@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110209121338.CBACD23888D2@eris.apache.org> Author: fuankg Date: Wed Feb 9 12:13:38 2011 New Revision: 1068857 URL: http://svn.apache.org/viewvc?rev=1068857&view=rev Log: Fixed buildconf hint about missing APR/APU. With the httpd 2.2.x branch we use by default the APR 1.4.x and APU 1.3.x branch and not trunk; also most likely the 2.2.x configure stuff is not prepared for APR-2 where APR and APU are now merged and no longer in separate directories. Modified: httpd/httpd/branches/2.2.x/buildconf Modified: httpd/httpd/branches/2.2.x/buildconf URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/buildconf?rev=1068857&r1=1068856&r2=1068857&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/buildconf (original) +++ httpd/httpd/branches/2.2.x/buildconf Wed Feb 9 12:13:38 2011 @@ -73,7 +73,7 @@ if [ $apr_found -lt 1 ]; then echo "or specify the location of the source with " echo "--with-apr=[path to apr] :" echo "" - echo " svn co http://svn.apache.org/repos/asf/apr/apr/trunk srclib/apr" + echo " svn co http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x srclib/apr" echo "" should_exit=1 fi @@ -91,11 +91,11 @@ done 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 "Please get the source using the following instructions, " echo "or specify the location of the source with " - echo "--with-apr-util=[path to apr-util]:" + echo "--with-apr-util=[path to apr-util] :" echo "" - echo " svn co http://svn.apache.org/repos/asf/apr/apr-util/trunk srclib/apr-util" + echo " svn co http://svn.apache.org/repos/asf/apr/apr-util/branches/1.3.x srclib/apr-util" echo "" should_exit=1 fi