better variant of change#4644 (from Andy Dougherty)
[p5sagit/p5-mst-13.2.git] / win32 / config_sh.PL
CommitLineData
80252599 1# take a semicolon separated path list and turn it into a quoted
2# list of paths that Text::Parsewords will grok
3sub mungepath {
4 my $p = shift;
5 # remove leading/trailing semis/spaces
6 $p =~ s/^[ ;]+//;
7 $p =~ s/[ ;]+$//;
8 $p =~ s/'/"/g;
9 my @p = map { $_ = "\"$_\"" if /\s/ and !/^".*"$/; $_ } split /;/, $p;
10 return join(' ', @p);
11}
12
7a958ec3 13# generate an array of option strings from command-line args
14# or an option file
15# -- added by BKS, 10-17-1999 to fix command-line overflow problems
16sub loadopts {
17 if ($ARGV[0] =~ /--cfgsh-option-file/) {
18 shift @ARGV;
19 my $optfile = shift @ARGV;
20 local (*F);
21 open OPTF, $optfile or die "Can't open $optfile: $!\n";
22 my @opts;
23 chomp(my $line = <OPTF>);
24 my @vars = split(/\t+~\t+/, $line);
25 for (@vars) {
26 push(@opts, $_) unless (/^\s*$/);
27 }
28 close OPTF;
29 return \@opts;
30 }
31 else {
32 return \@ARGV;
33 }
34}
35
137443ea 36my %opt;
7a958ec3 37my $optref = loadopts();
38while (@{$optref} && $optref->[0] =~ /^([\w_]+)=(.*)$/) {
39 $opt{$1}=$2;
40 shift(@{$optref});
41}
7bac28a0 42
52b0428e 43my $pl_h = '../patchlevel.h';
44
10609e9a 45$opt{VERSION} = $];
46$opt{INST_VER} =~ s|~VERSION~|$]|g;
52b0428e 47if (-e $pl_h) {
48 open PL, "<$pl_h" or die "Can't open $pl_h: $!";
49 while (<PL>) {
50 if (/^#\s*define\s+(PERL_\w+)\s+([\d.]+)/) {
51 $opt{$1} = $2;
52 }
53 }
54 close PL;
55}
56elsif ($] =~ /^(\d+)\.(\d\d\d)?(\d\d)?$/) { # should always be true
7a958ec3 57 $opt{PERL_REVISION} = $1;
58 $opt{PERL_VERSION} = int($2 || 0);
59 $opt{PERL_SUBVERSION} = $3;
60 $opt{PERL_APIVERSION} = $];
e1f15930 61}
62else {
7a958ec3 63 die "Can't parse perl version ($])";
c90c0ff4 64}
65
52b0428e 66$opt{PERL_SUBVERSION} ||= '00';
67
d484a829 68$opt{'cf_by'} = $ENV{USERNAME} unless $opt{'cf_by'};
69$opt{'cf_email'} = $opt{'cf_by'} . '@' . (gethostbyname('localhost'))[0]
70 unless $opt{'cf_email'};
852c2e52 71$opt{'usemymalloc'} = 'y' if $opt{'d_mymalloc'} eq 'define';
d484a829 72
80252599 73$opt{libpth} = mungepath($opt{libpth}) if exists $opt{libpth};
74$opt{incpath} = mungepath($opt{incpath}) if exists $opt{incpath};
75
7a958ec3 76while (<>) {
77 s/~([\w_]+)~/$opt{$1}/g;
78 if (/^([\w_]+)=(.*)$/) {
79 my($k,$v) = ($1,$2);
80 # this depends on cf_time being empty in the template (or we'll
81 # get a loop)
82 if ($k eq 'cf_time') {
83 $_ = "$k='" . localtime(time) . "'\n" if $v =~ /^\s*'\s*'/;
84 }
85 elsif (exists $opt{$k}) {
86 $_ = "$k='$opt{$k}'\n";
87 }
dc050285 88 }
7a958ec3 89 print;
90}
137443ea 91