This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
win32 config tweak (suggested by Greg Chapman <glc@well.com>)
[perl5.git] / win32 / config_sh.PL
CommitLineData
80252599
GS
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
137443ea 13my %opt;
14while (@ARGV && $ARGV[0] =~ /^([\w_]+)=(.*)$/)
15 {
16 $opt{$1}=$2;
17 shift(@ARGV);
18 }
7bac28a0 19
10609e9a
GS
20$opt{VERSION} = $];
21$opt{INST_VER} =~ s|~VERSION~|$]|g;
c90c0ff4 22if ($] =~ /\.(\d\d\d)?(\d\d)?$/) { # should always be true
cceca5ed
GS
23 $opt{PERL_VERSION} = int($1 || 0);
24 $opt{PERL_SUBVERSION} = $2 || '00';
c90c0ff4 25}
26
d484a829
GS
27$opt{'cf_by'} = $ENV{USERNAME} unless $opt{'cf_by'};
28$opt{'cf_email'} = $opt{'cf_by'} . '@' . (gethostbyname('localhost'))[0]
29 unless $opt{'cf_email'};
852c2e52 30$opt{'usemymalloc'} = 'y' if $opt{'d_mymalloc'} eq 'define';
d484a829 31
80252599
GS
32$opt{libpth} = mungepath($opt{libpth}) if exists $opt{libpth};
33$opt{incpath} = mungepath($opt{incpath}) if exists $opt{incpath};
34
137443ea 35while (<>)
36 {
37 s/~([\w_]+)~/$opt{$1}/g;
dc050285 38 if (/^([\w_]+)=(.*)$/) {
691c0cce 39 my($k,$v) = ($1,$2);
dc050285 40 # this depends on cf_time being empty in the template (or we'll get a loop)
691c0cce
GS
41 if ($k eq 'cf_time') {
42 $_ = "$k='" . localtime(time) . "'\n" if $v =~ /^\s*'\s*'/;
dc050285 43 }
691c0cce
GS
44 elsif (exists $opt{$k}) {
45 $_ = "$k='$opt{$k}'\n";
dc050285
GS
46 }
47 }
137443ea 48 print;
49 }
50