gozer 2004/01/14 12:07:18
Modified: . Changes lib/Apache SizeLimit.pm Log: Fix incorrect win32 detection in Apache::SizeLimit Submitted by: Matt Phillips <[EMAIL PROTECTED]> Revision Changes Path 1.689 +3 -0 modperl/Changes Index: Changes =================================================================== RCS file: /home/cvs/modperl/Changes,v retrieving revision 1.688 retrieving revision 1.689 diff -u -r1.688 -r1.689 --- Changes 10 Dec 2003 21:09:36 -0000 1.688 +++ Changes 14 Jan 2004 20:07:18 -0000 1.689 @@ -10,6 +10,9 @@ =item 1.30_01-dev +Fix incorrect win32 detection in Apache::SizeLimit reported by +Matt Phillips <[EMAIL PROTECTED]> [Philippe M. Chiasson] + The print-a-scalar-reference feature is now deprecated and documented as such [Stas] 1.13 +1 -2 modperl/lib/Apache/SizeLimit.pm Index: SizeLimit.pm =================================================================== RCS file: /home/cvs/modperl/lib/Apache/SizeLimit.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- SizeLimit.pm 10 Jun 2003 03:11:16 -0000 1.12 +++ SizeLimit.pm 14 Jan 2004 20:07:18 -0000 1.13 @@ -159,10 +159,9 @@ $MAX_PROCESS_SIZE = 0; $MIN_SHARE_SIZE = 0; $MAX_UNSHARED_SIZE = 0; -$WIN32 = 0; - BEGIN { + $WIN32 = 0; # decide at compile time how to check for a process' memory size. if (($Config{'osname'} eq 'solaris') && ($Config{'osvers'} >= 2.6)) {