4c6b4cbbd73bab26899b1c17f3d4f2df1180b610
[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 $out =~ s/_h$/.h/;
7 open(OUT,">$out") || die "Cannot open $file:$!";
8 print "Extracting $out...\n";
9 print OUT <<"END";
10 /*
11  !!! Don't modify this file - it's autogenerated from $0 !!!
12  */
13 END
14
15 foreach my $const (qw(
16                       AVf_REAL
17                       HEf_SVKEY
18                       SVf_READONLY SVTYPEMASK
19                       GVf_IMPORTED_AV GVf_IMPORTED_HV
20                       GVf_IMPORTED_SV GVf_IMPORTED_CV
21                       CVf_CLONE CVf_CLONED CVf_ANON CVf_OLDSTYLE
22                       CVf_UNIQUE CVf_NODEBUG CVf_METHOD CVf_LOCKED
23                       CVf_LVALUE CVf_CONST CVf_WEAKOUTSIDE CVf_ASSERTION
24                       SVpad_OUR SVf_FAKE SVf_IOK SVf_IVisUV SVf_NOK SVf_POK 
25                       SVf_ROK SVp_IOK SVp_POK SVp_NOK SVt_PVGV SVt_PVHV SVs_RMG
26                       ))
27  {
28   doconst($const);
29  }
30 foreach my $file (qw(op.h cop.h))
31  {
32   my $path = $^O eq 'MacOS' ? ":::$file" : "../../$file";
33   open(OPH,"$path") || die "Cannot open $path:$!";
34   while (<OPH>)
35    {  
36     doconst($1) if (/#define\s+(\w+)\s+([\(\)\|\dx]+)\s*(?:$|\/\*)/);
37    }  
38   close(OPH);
39  }
40 close(OUT);
41                
42 sub doconst
43 {
44  my $sym = shift;
45  my $l = length($sym);
46  print OUT <<"END";
47  newCONSTSUB(stash,"$sym",newSViv($sym)); 
48  av_push(export_ok,newSVpvn("$sym",$l));
49 END
50 }