You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by pg...@apache.org on 2006/07/14 12:14:56 UTC

svn commit: r421855 - /perl/modperl/trunk/lib/Apache2/SizeLimit.pm

Author: pgollucci
Date: Fri Jul 14 03:14:53 2006
New Revision: 421855

URL: http://svn.apache.org/viewvc?rev=421855&view=rev
Log:
darwin's getrusage (2) returns 0 all the time

Obtained From: Apache-SizeLimit 0.90

Thanks to: David Wheeler <da...@kineticode.com>
           for testing and reporting on MAC OS 10.4


Modified:
    perl/modperl/trunk/lib/Apache2/SizeLimit.pm

Modified: perl/modperl/trunk/lib/Apache2/SizeLimit.pm
URL: http://svn.apache.org/viewvc/perl/modperl/trunk/lib/Apache2/SizeLimit.pm?rev=421855&r1=421854&r2=421855&view=diff
==============================================================================
--- perl/modperl/trunk/lib/Apache2/SizeLimit.pm (original)
+++ perl/modperl/trunk/lib/Apache2/SizeLimit.pm Fri Jul 14 03:14:53 2006
@@ -30,7 +30,7 @@
 use constant WIN32    => $^O eq 'MSWin32';
 use constant SOLARIS  => $^O eq 'solaris';
 use constant LINUX    => $^O eq 'linux';
-use constant BSD_LIKE => $^O =~ /(bsd|aix|darwin)/i;
+use constant BSD_LIKE => $^O =~ /(bsd|aix)/i;
 
 use Apache2::Const -compile => qw(OK DECLINED);