Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 70486 invoked from network); 7 Oct 2005 03:44:24 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Oct 2005 03:44:24 -0000 Received: (qmail 14884 invoked by uid 500); 7 Oct 2005 03:44:24 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 14702 invoked by uid 500); 7 Oct 2005 03:44:23 -0000 Mailing-List: contact dev-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@perl.apache.org Received: (qmail 14691 invoked by uid 99); 7 Oct 2005 03:44:23 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2005 20:44:23 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [142.132.30.225] (HELO theoryx5.uwinnipeg.ca) (142.132.30.225) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2005 20:44:25 -0700 Received: from theoryx5.uwinnipeg.ca (localhost.localdomain [127.0.0.1]) by theoryx5.uwinnipeg.ca (8.12.8/8.12.8) with ESMTP id j973b8vo011551; Thu, 6 Oct 2005 22:37:08 -0500 Received: from localhost (randy@localhost) by theoryx5.uwinnipeg.ca (8.12.8/8.12.8/Submit) with ESMTP id j973b4Rf011544; Thu, 6 Oct 2005 22:37:07 -0500 Date: Thu, 6 Oct 2005 22:37:04 -0500 (CDT) From: Randy Kobes To: Geoffrey Young cc: "Philip M. Gollucci" , mod_perl Dev , Steve Hay Subject: Re: [RELEASE CANDIDATE] mod_perl-2.0.2 RC1 In-Reply-To: Message-ID: References: <4341E976.5000905@p6m7g8.com> <4344D2B9.8010304@p6m7g8.com> <43451DD9.1080404@modperlcookbook.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On Thu, 6 Oct 2005, Randy Kobes wrote: > On Thu, 6 Oct 2005, Geoffrey Young wrote: > >> >>> By my count, thats 2 +1s. I'll have some A-T feedback later this weekend. >> >> just as a reminder, the ASF is really trying to enforce "three +1 from pmc >> members" prior to any official release coming from ASF projects, regardless >> of how many +1s something gets from committers. >> >> here's my +1, which makes 2 pmc votes for 2.0.2. randy, perrin, joe? :) > > I'm working on trying to find out what causes Steve's problem in running the > tests - he specifies MP_AP_PREFIX > properly, but somehow the wrong Apache directory is picked > up. This might be a problem with Apache-Test ... I think the problem is that a fix in the current svn for Apache::TestConfigParse didn't make it into this rc. The diff is ========================================================== --- TestConfigParse.pm~ Fri Sep 9 00:12:46 2005 +++ TestConfigParse.pm Mon Oct 3 22:10:08 2005 @@ -347,14 +347,16 @@ $file = catfile $base, $default_conf; # SERVER_CONFIG_FILE might be an absolute path - if (! -e $file && -e $default_conf) { - $file = $default_conf; - } - else { - # try a little harder - if (my $root = $self->{httpd_defines}->{HTTPD_ROOT}) { - debug "using HTTPD_ROOT to resolve $default_conf"; - $file = catfile $root, $default_conf; + unless (-e $file) { + if (-e $default_conf) { + $file = $default_conf; + } + else { + # try a little harder + if (my $root = $self->{httpd_defines}->{HTTPD_ROOT}) { + debug "using HTTPD_ROOT to resolve $default_conf"; + $file = catfile $root, $default_conf; + } } } } ===================================================================== Steve, does this fix the tests for you? -- best regards, randy --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org For additional commands, e-mail: dev-help@perl.apache.org