Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 53302 invoked from network); 13 May 2005 14:44:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 May 2005 14:44:27 -0000 Received: (qmail 66867 invoked by uid 500); 13 May 2005 14:48:46 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 66637 invoked by uid 500); 13 May 2005 14:48:44 -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 66610 invoked by uid 99); 13 May 2005 14:48:43 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Fri, 13 May 2005 07:48:43 -0700 Received: (qmail 53204 invoked by uid 65534); 13 May 2005 14:44:23 -0000 Message-ID: <20050513144423.53200.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r170029 - /httpd/httpd/trunk/configure.in Date: Fri, 13 May 2005 14:44:22 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Fri May 13 07:44:21 2005 New Revision: 170029 URL: http://svn.apache.org/viewcvs?rev=3D170029&view=3Drev Log: * configure.in: Disallow use of bundled APR with external APR-util, or bundled APR-util with external APR, another cause of the dreaded PR21718. Modified: httpd/httpd/trunk/configure.in Modified: httpd/httpd/trunk/configure.in URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/configure.in?rev=3D170= 029&r1=3D170028&r2=3D170029&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- httpd/httpd/trunk/configure.in (original) +++ httpd/httpd/trunk/configure.in Fri May 13 07:44:21 2005 @@ -95,6 +95,16 @@ AC_MSG_ERROR([APR-util not found. Please read the documentation.]) fi =20 +# Catch some misconfigurations: +case ${apr_found}.${apu_found} in +reconfig.yes) + AC_MSG_ERROR([Cannot use an external APR-util with the bundled APR]) + ;; +yes.reconfig) + AC_MSG_ERROR([Cannot use an external APR with the bundled APR-util]) + ;; +esac =20 + if test "$apu_found" =3D "reconfig"; then APR_SUBDIR_CONFIG(srclib/apr-util, [--with-apr=3D../apr --prefix=3D$prefix --exec-prefix= =3D$exec_prefix --libdir=3D$libdir --includedir=3D$includedir --bindir=3D$b= indir],