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 do...@apache.org on 2002/08/24 19:15:37 UTC

cvs commit: modperl-2.0/lib/ModPerl Code.pm

dougm       2002/08/24 10:15:37

  Modified:    lib/ModPerl Code.pm
  Log:
  backwards compat for APR_LIMIT_NOFILE constant
  
  Revision  Changes    Path
  1.85      +3 -1      modperl-2.0/lib/ModPerl/Code.pm
  
  Index: Code.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/Code.pm,v
  retrieving revision 1.84
  retrieving revision 1.85
  diff -u -r1.84 -r1.85
  --- Code.pm	29 Jun 2002 19:43:51 -0000	1.84
  +++ Code.pm	24 Aug 2002 17:15:37 -0000	1.85
  @@ -718,7 +718,9 @@
        REDIRECT => 'HTTP_MOVED_TEMPORARILY',
   );
   
  -my %ifdef = map { $_, 1 } qw(APLOG_TOCLIENT);
  +#backwards compat with older httpd/apr
  +#XXX: remove once we require newer httpd/apr
  +my %ifdef = map { $_, 1 } qw(APLOG_TOCLIENT APR_LIMIT_NOFILE);
   
   sub constants_ifdef {
       my $name = shift;