correct places that said newSVpv() when they meant newSVpvn()
[p5sagit/p5-mst-13.2.git] / ext / B / defsubs.h.PL
1 # Do not remove the following line; MakeMaker relies on it to identify
2 # this file as a template for defsubs.h
3 # Extracting defsubs.h (with variable substitutions)
4 #!perl
5 my ($out) = __FILE__ =~ /(^.*)[._]PL/i;
6 if ($^O eq 'VMS') { $out =~ s/(^.*)[._](.*$)/$1.$2/;}
7 open(OUT,">$out") || die "Cannot open $file:$!";
8 print "Extracting $out . . .\n";
9 foreach my $const (qw(AVf_REAL 
10                       HEf_SVKEY
11                       SVf_IOK SVf_NOK SVf_POK SVf_ROK SVp_IOK SVp_POK ))
12  {
13   doconst($const);
14  }
15 foreach my $file (qw(op.h cop.h))
16  {
17   open(OPH,"../../$file") || die "Cannot open ../../$file:$!";
18   while (<OPH>)
19    {  
20     doconst($1) if (/#define\s+(\w+)\s+([\(\)\|\dx]+)\s*(?:$|\/\*)/);
21    }  
22   close(OPH);
23  }
24 close(OUT);
25                
26 sub doconst
27 {
28  my $sym = shift;
29  my $l = length($sym);
30  print OUT <<"END";
31  newCONSTSUB(stash,"$sym",newSViv($sym)); 
32  av_push(export_ok,newSVpvn("$sym",$l));
33 END
34 }