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 st...@apache.org on 2003/03/01 01:53:20 UTC

cvs commit: modperl-2.0 Changes

stas        2003/02/28 16:53:20

  Modified:    lib/ModPerl Code.pm
               .        Changes
  Log:
  fix the code that autogenerates modperl_largefiles.h not to define
  macros matching m/^-/ (was a problem on aix-4.3.3)
  
  Revision  Changes    Path
  1.93      +1 -0      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.92
  retrieving revision 1.93
  diff -u -r1.92 -r1.93
  --- Code.pm	8 Feb 2003 04:17:11 -0000	1.92
  +++ Code.pm	1 Mar 2003 00:53:20 -0000	1.93
  @@ -512,6 +512,7 @@
       return unless $flags;
   
       for my $flag (split /\s+/, $flags) {
  +        next if $flag =~ /^-/; # skip -foo flags
           my($name, $val) = split '=', $flag;
           $val ||= '';
           $name =~ s/^-D//;
  
  
  
  1.135     +3 -0      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.134
  retrieving revision 1.135
  diff -u -r1.134 -r1.135
  --- Changes	26 Feb 2003 09:32:53 -0000	1.134
  +++ Changes	1 Mar 2003 00:53:20 -0000	1.135
  @@ -10,6 +10,9 @@
   
   =item 1.99_09-dev
   
  +fix the code that autogenerates modperl_largefiles.h not to define
  +macros matching m/^-/ (was a problem on aix-4.3.3) [Stas]
  +
   $Apache::Server::StrictPerlSections added. When set to a true
   value, will abort server startup if there are syntax errors
   in <Perl > sections [Philippe M. Chiasson <gozer@cpan.org]