Upgrade to Digest-1.16
[p5sagit/p5-mst-13.2.git] / regen.pl
1 #!/usr/bin/perl -w
2 #
3 # regen.pl - a wrapper that runs all *.pl scripts to to autogenerate files
4
5 require 5.003;  # keep this compatible, an old perl is all we may have before
6                 # we build the new one
7
8 # The idea is to move the regen_headers target out of the Makefile so that
9 # it is possible to rebuild the headers before the Makefile is available.
10 # (and the Makefile is unavailable until after Configure is run, and we may
11 # wish to make a clean source tree but with current headers without running
12 # anything else.
13
14 use strict;
15 my $perl = $^X;
16
17 # keep warnings.pl in sync with the CPAN distribution by not requiring core
18 # changes.  Um, what ?
19 # safer_unlink ("warnings.h", "lib/warnings.pm");
20
21 # Which scripts to run. Note the ordering: embed.pl must run after
22 # opcode.pl, since it depends on pp.sym, and autodoc.pl should run last as
23 # it reads all *.[ch] files, some of which may have been changed by other
24 # scripts (eg reentr.c)
25
26 my @scripts = qw(
27 keywords.pl
28 opcode.pl
29 overload.pl
30 reentr.pl
31 regcomp.pl
32 warnings.pl
33
34 embed.pl
35 autodoc.pl
36 );
37
38 # Which files are (re)generated by each script.
39 # *** We no longer need these values, as the "changed" message is
40 # now generated by regen_lib.pl, so should we just drop them?
41
42 my %gen = (
43            'autodoc.pl'  => [qw[pod/perlapi.pod pod/perlintern.pod]],
44            'embed.pl'    => [qw[proto.h embed.h embedvar.h global.sym
45                                 perlapi.h perlapi.c]],
46            'keywords.pl' => [qw[keywords.h]],
47            'opcode.pl'   => [qw[opcode.h opnames.h pp_proto.h pp.sym]],
48            'regcomp.pl'  => [qw[regnodes.h]],
49            'warnings.pl' => [qw[warnings.h lib/warnings.pm]],
50            'reentr.pl'   => [qw[reentr.c reentr.h]],
51            'overload.pl' => [qw[overload.c overload.h lib/overload/numbers.pm]],
52            );
53
54 sub do_cksum {
55     my $pl = shift;
56     my %cksum;
57     for my $f (@{ $gen{$pl} }) {
58         local *FH;
59         if (open(FH, $f)) {
60             local $/;
61             $cksum{$f} = unpack("%32C*", <FH>);
62             close FH;
63         } else {
64             warn "$0: $f: $!\n";
65         }
66     }
67     return %cksum;
68 }
69
70 foreach my $pl (@scripts) {
71   my @command =  ($^X, $pl, @ARGV);
72   print "@command\n";
73   system @command;
74 }