This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
use yyerror() instead of croak() so that compile-time failures in
[perl5.git] / win32 / config_sh.PL
1 # take a semicolon separated path list and turn it into a quoted
2 # list of paths that Text::Parsewords will grok
3 sub 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
13 my %opt;
14 while (@ARGV && $ARGV[0] =~ /^([\w_]+)=(.*)$/)
15  {
16   $opt{$1}=$2;
17   shift(@ARGV);
18  }
19
20 $opt{VERSION} = $];
21 $opt{INST_VER} =~ s|~VERSION~|$]|g;
22 if ($] =~ /\.(\d\d\d)?(\d\d)?$/) { # should always be true
23   $opt{PERL_VERSION} = int($1 || 0);
24   $opt{PERL_SUBVERSION} = $2 || '00';
25 }
26
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'};
30 $opt{'usemymalloc'} = 'y' if $opt{'d_mymalloc'} eq 'define';
31
32 $opt{libpth} = mungepath($opt{libpth}) if exists $opt{libpth};
33 $opt{incpath} = mungepath($opt{incpath}) if exists $opt{incpath};
34
35 while (<>)
36  {
37   s/~([\w_]+)~/$opt{$1}/g;
38   if (/^([\w_]+)=(.*)$/) {
39     # this depends on cf_time being empty in the template (or we'll get a loop)
40     if ($1 eq 'cf_time') {
41       $_ = "$1='" . localtime(time) . "'\n" if $2 =~ /^\s*'\s*'/;
42     }
43     elsif (exists $opt{$1}) {
44       $_ = "$1='$opt{$1}'\n";
45     }
46   }
47   print;
48  }
49