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...@hyperreal.org on 1998/08/31 22:03:53 UTC

cvs commit: modperl Makefile.PL

dougm       98/08/31 13:03:53

  Modified:    .        Makefile.PL
  Log:
  need to fix opmask-auto-generation before this can be on by default,
  otherwise people using EXPERIMENTAL=1 may fail 'make test' for no good reason
  
  Revision  Changes    Path
  1.88      +4 -1      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /export/home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -u -r1.87 -r1.88
  --- Makefile.PL	1998/08/28 23:07:18	1.87
  +++ Makefile.PL	1998/08/31 20:03:52	1.88
  @@ -269,9 +269,12 @@
       $callback_hooks{$k} = $v if exists $callback_hooks{$k};
   }
   
  +my %very_experimental = map {$_,1} 
  +qw(PERL_DEFAULT_OPMASK PERL_SAFE_STARTUP);
  +
   if($EXPERIMENTAL) {
       for (keys %experimental) {
  -        next if $_ eq "PERL_DEFAULT_OPMASK"; #have to *really* ask for this one
  +        next if $very_experimental{$_}; #have to *really* ask for this one
           next if $experimental{$_}++ > 1;
   	$PERL_EXTRA_CFLAGS .= " -D$_=1";
       }