PerlIO_read() can return negative.
[p5sagit/p5-mst-13.2.git] / ext / B / defsubs_h.PL
CommitLineData
918c0b2d 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)
4c1f658f 4#!perl
32882678 5my ($out) = __FILE__ =~ /(^.*)\.PL/i;
93804878 6$out =~ s/_h$/.h/;
4c1f658f 7open(OUT,">$out") || die "Cannot open $file:$!";
cc50ac46 8print "Extracting $out...\n";
651aa52e 9print OUT <<"END";
10/*
11 !!! Don't modify this file - it's autogenerated from $0 !!!
12 */
13END
14
059a8bb7 15foreach my $const (qw(
16 AVf_REAL
b874ff32 17 HEf_SVKEY
059a8bb7 18 SVf_READONLY SVTYPEMASK
19 GVf_IMPORTED_AV GVf_IMPORTED_HV
20 GVf_IMPORTED_SV GVf_IMPORTED_CV
127212b2 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
7dafbf52 24 SVpad_OUR SVf_FAKE SVf_IOK SVf_IVisUV SVf_NOK SVf_POK
127212b2 25 SVf_ROK SVp_IOK SVp_POK SVp_NOK SVt_PVGV SVt_PVHV SVs_RMG
059a8bb7 26 ))
4c1f658f 27 {
28 doconst($const);
29 }
30foreach my $file (qw(op.h cop.h))
31 {
db5fd395 32 my $path = $^O eq 'MacOS' ? ":::$file" : "../../$file";
33 open(OPH,"$path") || die "Cannot open $path:$!";
4c1f658f 34 while (<OPH>)
35 {
36 doconst($1) if (/#define\s+(\w+)\s+([\(\)\|\dx]+)\s*(?:$|\/\*)/);
37 }
38 close(OPH);
39 }
40close(OUT);
41
42sub doconst
43{
44 my $sym = shift;
45 my $l = length($sym);
46 print OUT <<"END";
47 newCONSTSUB(stash,"$sym",newSViv($sym));
79cb57f6 48 av_push(export_ok,newSVpvn("$sym",$l));
4c1f658f 49END
50}