dougm       01/04/27 14:07:54

  Modified:    lib/ModPerl BuildOptions.pm
  Log:
  add secret sauce
  
  Revision  Changes    Path
  1.8       +5 -0      modperl-2.0/lib/ModPerl/BuildOptions.pm
  
  Index: BuildOptions.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/BuildOptions.pm,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BuildOptions.pm   2001/04/04 05:41:06     1.7
  +++ BuildOptions.pm   2001/04/27 21:07:53     1.8
  @@ -40,6 +40,11 @@
   
           $_ = "$continue $_" if $continue;
   
  +        #example: +"MP_CCOPTS=-Werror" if $] >= 5.007
  +        if (s/^\+//) {
  +            $_ = eval $_;
  +        }
  +
           if (/^MP_/) {
               my($key, $val) = split $param_qr, $_, 2;
               $val ||= "";
  
  
  

Reply via email to