This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix a broken optimization in win32/config_h.PL to stop excessive rebuilding
[perl5.git] / win32 / config_h.PL
CommitLineData
2d7ad1b1
SH
1#!perl -w
2use strict;
3
1018e26f
NIS
4BEGIN { warn "Running ".__FILE__."\n" };
5BEGIN
6 {
7bd379e8
YO
7 require "Config.pm";
8 die "Config.pm:$@" if $@;
2d7ad1b1 9 Config->import;
1018e26f 10 }
137443ea 11use File::Compare qw(compare);
12use File::Copy qw(copy);
f3b9bb7d 13use File::Basename qw(fileparse);
2d7ad1b1 14
f3b9bb7d 15my ($name, $dir) = fileparse($0);
137443ea 16$name =~ s#^(.*)\.PL$#../$1.SH#;
e5a95ffb
GS
17my %opt;
18while (@ARGV && $ARGV[0] =~ /^([\w_]+)=(.*)$/)
19 {
20 $opt{$1}=$2;
21 shift(@ARGV);
22 }
38121b9e
GS
23
24$opt{CONFIG_H} ||= 'config.h';
7bd379e8 25$opt{CORE_DIR} ||= '../lib/CORE';
38121b9e 26
1018e26f
NIS
27warn "Writing $opt{CONFIG_H}\n";
28
137443ea 29open(SH,"<$name") || die "Cannot open $name:$!";
30while (<SH>)
31 {
a2b6a4d6 32 last if /^\s*sed/;
137443ea 33 }
2d7ad1b1 34my($term,$file,$pat) = /^\s*sed\s+<<(\S+)\s+>(\S+)\s+(.*)$/;
137443ea 35
38121b9e
GS
36$file =~ s/^\$(\w+)$/$opt{$1}/g;
37
137443ea 38my $str = "sub munge\n{\n";
39
40while ($pat =~ s/-e\s+'([^']*)'\s*//)
41 {
42 my $e = $1;
43 $e =~ s/\\([\(\)])/$1/g;
44 $e =~ s/\\(\d)/\$$1/g;
45 $str .= "$e;\n";
46 }
47$str .= "}\n";
48
49eval $str;
50
51die "$str:$@" if $@;
52
53open(H,">$file.new") || die "Cannot open $file.new:$!";
884a09e7 54binmode(H);
137443ea 55while (<SH>)
56 {
57 last if /^$term$/o;
58 s/\$([\w_]+)/Config($1)/eg;
59 s/`([^\`]*)`/BackTick($1)/eg;
60 munge();
61 s/\\\$/\$/g;
62 s#/[ *\*]*\*/#/**/#;
f3b9bb7d 63 s#(.)/\*\*/#$1/ **/# if(/^\/\*/); #avoid "/*" inside comments
4ea817c6 64 if (/^\s*#define\s+(PRIVLIB|SITELIB|VENDORLIB)_EXP/)
acbc2db6 65 {
e6a0bbf8 66 $_ = "#define ". $1 . "_EXP (win32_get_". lc($1) . "(PERL_VERSION_STRING, NULL))\t/**/\n";
acbc2db6 67 }
e5a95ffb 68 # incpush() handles archlibs, so disable them
4ea817c6 69 elsif (/^\s*#define\s+(ARCHLIB|SITEARCH|VENDORARCH)_EXP/)
acbc2db6 70 {
f3b9bb7d 71 $_ = "/*#define ". $1 . "_EXP \"\"\t/ **/\n";
137443ea 72 }
7bef440c
SH
73 elsif (/^\s*#define\s+CPP(STDIN|RUN)\s+"gcc(.*)"\s*$/)
74 {
75 $_ = "#define CPP" . $1 . " \"" . $opt{ARCHPREFIX} . "gcc" . $2 . "\"\n";
76 }
137443ea 77 print H;
78 }
137443ea 79close(H);
80close(SH);
81
989c251f
DD
82if (compare("$file.new","$opt{CORE_DIR}/$opt{CONFIG_H}")) {
83 chmod(0666,"$opt{CORE_DIR}/$opt{CONFIG_H}");
84 copy("$file.new","$opt{CORE_DIR}/$opt{CONFIG_H}") || die "Cannot copy:$!";
85 chmod(0444,"$opt{CORE_DIR}/$opt{CONFIG_H}");
86}
137443ea 87
acfe0abc 88if (compare("$file.new",$file))
137443ea 89 {
90 warn "$file has changed\n";
91 chmod(0666,$file);
92 unlink($file);
93 rename("$file.new",$file);
137443ea 94 exit(1);
95 }
01f988be
GS
96else
97 {
98 unlink ("$file.new");
99 exit(0);
100 }
137443ea 101
102sub Config
103{
104 my $var = shift;
105 my $val = $Config{$var};
106 $val = 'undef' unless defined $val;
107 $val =~ s/\\/\\\\/g;
108 return $val;
109}
110
111sub BackTick
112{
113 my $cmd = shift;
114 if ($cmd =~ /^echo\s+(.*?)\s*\|\s+sed\s+'(.*)'\s*$/)
115 {
2d7ad1b1 116 my($data,$pat) = ($1,$2);
137443ea 117 $data =~ s/\s+/ /g;
118 eval "\$data =~ $pat";
119 return $data;
120 }
121 else
122 {
123 die "Cannot handle \`$cmd\`";
124 }
125 return $cmd;
126}