dougm       2002/06/18 18:26:28

  Modified:    lib/Apache Build.pm
  Log:
  need to check ccflags rather than optimize for -DDEBUGGING
  
  Revision  Changes    Path
  1.100     +1 -1      modperl-2.0/lib/Apache/Build.pm
  
  Index: Build.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/Build.pm,v
  retrieving revision 1.99
  retrieving revision 1.100
  diff -u -r1.99 -r1.100
  --- Build.pm  17 Jun 2002 19:42:49 -0000      1.99
  +++ Build.pm  19 Jun 2002 01:26:28 -0000      1.100
  @@ -285,7 +285,7 @@
       $val ||= $Config{optimize};
   
       if ($self->{MP_DEBUG}) {
  -        return ' ' unless $val =~ /-DDEBUGGING/;
  +        return ' ' unless $Config{ccflags} =~ /-DDEBUGGING/;
       }
   
       $val;
  
  
  


Reply via email to