gozer 2003/06/09 20:11:16
Modified: lib/Apache SizeLimit.pm
. Changes
Log:
Add Mac OS X support to Apache::SizeLimit
Submitted by: David Wheeler <[EMAIL PROTECTED]>
Reviewed by: gozer
Revision Changes Path
1.12 +1 -1 modperl/lib/Apache/SizeLimit.pm
Index: SizeLimit.pm
===================================================================
RCS file: /home/cvs/modperl/lib/Apache/SizeLimit.pm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- SizeLimit.pm 30 May 2003 05:24:51 -0000 1.11
+++ SizeLimit.pm 10 Jun 2003 03:11:16 -0000 1.12
@@ -169,7 +169,7 @@
$HOW_BIG_IS_IT = \&solaris_2_6_size_check;
} elsif ($Config{'osname'} eq 'linux') {
$HOW_BIG_IS_IT = \&linux_size_check;
- } elsif ($Config{'osname'} =~ /(bsd|aix)/i) {
+ } elsif ($Config{'osname'} =~ /(bsd|aix|darwin)/i) {
# will getrusage work on all BSDs? I should hope so.
if (eval("require BSD::Resource;")) {
$HOW_BIG_IS_IT = \&bsd_size_check;
1.670 +3 -0 modperl/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl/Changes,v
retrieving revision 1.669
retrieving revision 1.670
diff -u -r1.669 -r1.670
--- Changes 30 May 2003 05:24:51 -0000 1.669
+++ Changes 10 Jun 2003 03:11:16 -0000 1.670
@@ -10,6 +10,9 @@
=item 1.27_01-dev
+Add Mac OS X support to Apache::SizeLimit [David Wheeler
+<[EMAIL PROTECTED]>]
+
Add Win32 support to Apache::SizeLimit [Matt Phillips
<[EMAIL PROTECTED]> and Mohamed Hendawi <[EMAIL PROTECTED]>]