Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 19543 invoked from network); 1 Jun 2006 09:32:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Jun 2006 09:32:27 -0000 Received: (qmail 46453 invoked by uid 500); 1 Jun 2006 09:32:22 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 46221 invoked by uid 500); 1 Jun 2006 09:32:21 -0000 Mailing-List: contact dev-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 dev@httpd.apache.org Received: (qmail 46210 invoked by uid 99); 1 Jun 2006 09:32:21 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 02:32:21 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of jorton@redhat.com designates 66.187.233.31 as permitted sender) Received: from [66.187.233.31] (HELO mx1.redhat.com) (66.187.233.31) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Jun 2006 02:32:20 -0700 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k519VxXU030429 for ; Thu, 1 Jun 2006 05:31:59 -0400 Received: from turnip.cambridge.redhat.com (turnip.cambridge.redhat.com [172.16.18.137]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k519VpDE023845 for ; Thu, 1 Jun 2006 05:31:51 -0400 Received: from turnip.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by turnip.cambridge.redhat.com (8.13.6/8.13.5) with ESMTP id k519VlEA018116 for ; Thu, 1 Jun 2006 10:31:47 +0100 Received: (from jorton@localhost) by turnip.cambridge.redhat.com (8.13.6/8.13.6/Submit) id k519Vlrr018115 for dev@httpd.apache.org; Thu, 1 Jun 2006 10:31:47 +0100 X-Authentication-Warning: turnip.cambridge.redhat.com: jorton set sender to jorton@redhat.com using -f Date: Thu, 1 Jun 2006 10:31:47 +0100 From: Joe Orton To: dev@httpd.apache.org Subject: Re: svn commit: r395211 - /httpd/httpd/trunk/configure.in Message-ID: <20060601093147.GF15356@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <20060419105733.4825.qmail@minotaur.apache.org> <4475FF18.6040907@apache.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <4475FF18.6040907@apache.org> User-Agent: Mutt/1.4.2.1i X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Thu, May 25, 2006 at 09:01:44PM +0200, Ruediger Pluem wrote: > On 04/19/2006 12:57 PM, > > Author: jorton > > Date: Wed Apr 19 03:57:20 2006 > > New Revision: 395211 ... > > +if test "x$with_included_apr" = "xyes"; then > > + apr_found=reconfig > > + apr_config="$srcdir/srclib/apr/apr-1-config" > > +else > > Is it really a good idea to hardcode apr-1-config or shouldn't it be something like > apr-?-config (Same question for apu-1-config below)? The "1" requirement is hardcoded in the APR_FIND_APx calls anyway, so I don't think this is a big deal. They could all be replaced with some variable I suppose. > > +if test "x$with_included_apr" = "xyes"; then > > + apu_found=reconfig > > + apu_config="${srcdir}/srclib/apr-util/apu-1-config" > > +else > > + APR_FIND_APU("$srcdir/srclib/apr-util", "./srclib/apr-util", 1, 1) > > +fi joe