Return-Path: Delivered-To: apmail-perl-dev-archive@www.apache.org Received: (qmail 68693 invoked from network); 6 Dec 2006 10:01:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Dec 2006 10:01:18 -0000 Received: (qmail 71211 invoked by uid 500); 6 Dec 2006 10:01:26 -0000 Delivered-To: apmail-perl-dev-archive@perl.apache.org Received: (qmail 71128 invoked by uid 500); 6 Dec 2006 10:01:25 -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 71107 invoked by uid 99); 6 Dec 2006 10:01:25 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Dec 2006 02:01:25 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: local policy) Received: from [66.236.219.70] (HELO piccollo.p6m7g8.net) (66.236.219.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Dec 2006 02:01:13 -0800 Received: from [192.168.0.2] (cpe-76-171-241-62.socal.res.rr.com [76.171.241.62]) (authenticated bits=0) by piccollo.p6m7g8.net (8.13.6/8.13.6) with ESMTP id kB6A0gY6036055 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Wed, 6 Dec 2006 05:00:46 -0500 (EST) (envelope-from pgollucci@p6m7g8.com) Message-ID: <457694C4.9080100@p6m7g8.com> Date: Wed, 06 Dec 2006 02:00:36 -0800 From: "Philip M. Gollucci" Organization: P6M7G8 Consulting User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: Fred Moyer CC: dev@perl.apache.org, mod_perl list Subject: Re: [RELEASE CANDIDATE] Apache-SizeLimit 0.91 RC1 References: <45767DDD.4060306@p6m7g8.com> <457688DD.8060106@taperfriendlymusic.org> In-Reply-To: <457688DD.8060106@taperfriendlymusic.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.4/2288/Wed Dec 6 02:50:20 2006 on piccollo.p6m7g8.net X-Virus-Status: Clean X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on piccollo.p6m7g8.net X-Virus-Checked: Checked by ClamAV on apache.org X-Old-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, DK_POLICY_SIGNSOME autolearn=ham version=3.1.5 Fred Moyer wrote: > Philip M. Gollucci wrote: >> A release candidate for Apache-SizeLimit 0.91-RC1 is now available. >> >> http://people.apache.org/~pgollucci/asl/Apache-SizeLimit-0.91-rc1.tar.gz > Here's my suggested patch to handle this. Only problem is it doesn't > tell you why it skipped - I know why but I don't count... You know it helps if I read the e-mail first. I don't have darwin handy give it a spin, add Changes and commit -- or yell that I broke it more. /home/pgollucci/dev/repos/asf/perl/Apache-SizeLimit/trunk 240 0 > svn diff t Index: t/apache/all.t =================================================================== --- t/apache/all.t (revision 482929) +++ t/apache/all.t (working copy) @@ -25,6 +25,11 @@ elsif ( $Config{'osname'} eq 'MSWin32' ) { $ok &= need_module('Win32::API'); } + elsif ( $Config{'osname'} eq /darwin/ ) { + push @Apache::Test::SkipReasons, + "$Config{osname} is not supported - broken getrusage(3)"; + return 0; + } $ok &= need_module('mod_perl.c'); Index: t/apache2/all.t =================================================================== --- t/apache2/all.t (revision 482929) +++ t/apache2/all.t (working copy) @@ -25,7 +25,13 @@ elsif ( $Config{'osname'} eq 'MSWin32' ) { $ok &= need_module('Win32::API'); } + elsif ( $Config{'osname'} eq /darwin/ ) { + push @Apache::Test::SkipReasons, + "$Config{osname} is not supported - broken getrusage(3)"; + return 0; + } $ok &= need_min_apache_version("2.0.48"); eval { require mod_perl2; }; -- ------------------------------------------------------------------------ Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708 Consultant / http://p6m7g8.net/Resume/resume.shtml Senior Software Engineer - TicketMaster - http://ticketmaster.com 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB B89E 1324 9B4F EC88 A0BF I never had a dream come true 'Til the day that I found you. Even though I pretend that I've moved on You'll always be my baby. I never found the words to say You're the one I think about each day And I know no matter where life takes me to A part of me will always be... A part of me will always be with you. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@perl.apache.org For additional commands, e-mail: dev-help@perl.apache.org