This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Clarify example of .. in perlop
[perl5.git] / win32 / config_sh.PL
CommitLineData
8e232993 1use FindExt;
80252599
GS
2# take a semicolon separated path list and turn it into a quoted
3# list of paths that Text::Parsewords will grok
4sub mungepath {
5 my $p = shift;
6 # remove leading/trailing semis/spaces
7 $p =~ s/^[ ;]+//;
8 $p =~ s/[ ;]+$//;
9 $p =~ s/'/"/g;
10 my @p = map { $_ = "\"$_\"" if /\s/ and !/^".*"$/; $_ } split /;/, $p;
11 return join(' ', @p);
12}
13
7a958ec3
BS
14# generate an array of option strings from command-line args
15# or an option file
16# -- added by BKS, 10-17-1999 to fix command-line overflow problems
17sub loadopts {
18 if ($ARGV[0] =~ /--cfgsh-option-file/) {
19 shift @ARGV;
20 my $optfile = shift @ARGV;
21 local (*F);
22 open OPTF, $optfile or die "Can't open $optfile: $!\n";
23 my @opts;
24 chomp(my $line = <OPTF>);
25 my @vars = split(/\t+~\t+/, $line);
26 for (@vars) {
27 push(@opts, $_) unless (/^\s*$/);
28 }
29 close OPTF;
30 return \@opts;
31 }
32 else {
33 return \@ARGV;
34 }
35}
36
137443ea 37my %opt;
8e232993 38
7a958ec3
BS
39my $optref = loadopts();
40while (@{$optref} && $optref->[0] =~ /^([\w_]+)=(.*)$/) {
41 $opt{$1}=$2;
42 shift(@{$optref});
43}
7bac28a0 44
ca58f2ae
YST
45FindExt::scan_ext("../ext");
46FindExt::set_static_extensions(split ' ', $opt{'static_ext'});
1076f1fd 47
0eff23c1
SH
48my @dynamic_ext = grep(!/Thread/,FindExt::dynamic_ext());
49my @extensions = grep(!/Thread/,FindExt::extensions());
ca58f2ae
YST
50$opt{'nonxs_ext'} = join(' ',FindExt::nonxs_ext()) || ' ';
51$opt{'static_ext'} = join(' ',FindExt::static_ext()) || ' ';
0eff23c1
SH
52$opt{'dynamic_ext'} = join(' ',@dynamic_ext) || ' ';
53$opt{'extensions'} = join(' ',@extensions) || ' ';
ca58f2ae 54$opt{'known_extensions'} = join(' ',FindExt::known_extensions()) || ' ';
8e232993 55
52b0428e
GS
56my $pl_h = '../patchlevel.h';
57
52b0428e
GS
58if (-e $pl_h) {
59 open PL, "<$pl_h" or die "Can't open $pl_h: $!";
60 while (<PL>) {
61 if (/^#\s*define\s+(PERL_\w+)\s+([\d.]+)/) {
62 $opt{$1} = $2;
63 }
64 }
65 close PL;
66}
e1f15930 67else {
273cf8d1 68 die "Can't find $pl_h: $!";
c90c0ff4 69}
273cf8d1
GS
70$opt{VERSION} = "$opt{PERL_REVISION}.$opt{PERL_VERSION}.$opt{PERL_SUBVERSION}";
71$opt{INST_VER} =~ s|~VERSION~|$opt{VERSION}|g;
fd390a00
JH
72$opt{'version_patchlevel_string'} = "version $opt{PERL_VERSION} subversion $opt{PERL_SUBVERSION}";
73$opt{'version_patchlevel_string'} .= " patchlevel $opt{PERL_PATCHLEVEL}" if exists $opt{PERL_PATCHLEVEL};
52b0428e 74
dbd14d13
SH
75$opt{'osvers'} = join '.', (Win32::GetOSVersion())[1,2];
76
2018b347
SH
77if (exists $opt{cc}) {
78 # cl and bcc32 version detection borrowed from Test::Smoke's configsmoke.pl
79 if ($opt{cc} eq 'cl') {
80 my $output = `cl --version 2>&1`;
81 $opt{ccversion} = $output =~ /^.*Version\s+([\d.]+)/ ? $1 : '?';
82 }
83 elsif ($opt{cc} eq 'bcc32') {
84 my $output = `bcc32 --version 2>&1`;
645ff3cb 85 $opt{ccversion} = $output =~ /([\d.]+)/ ? $1 : '?';
2018b347
SH
86 }
87 elsif ($opt{cc} eq 'gcc') {
88 chomp($opt{gccversion} = `gcc -dumpversion`);
89 }
90}
91
d484a829
GS
92$opt{'cf_by'} = $ENV{USERNAME} unless $opt{'cf_by'};
93$opt{'cf_email'} = $opt{'cf_by'} . '@' . (gethostbyname('localhost'))[0]
94 unless $opt{'cf_email'};
852c2e52 95$opt{'usemymalloc'} = 'y' if $opt{'d_mymalloc'} eq 'define';
d484a829 96
80252599
GS
97$opt{libpth} = mungepath($opt{libpth}) if exists $opt{libpth};
98$opt{incpath} = mungepath($opt{incpath}) if exists $opt{incpath};
99
108967c2
GS
100# some functions are not available on Win9x
101if (defined(&Win32::IsWin95) && Win32::IsWin95()) {
102 $opt{d_flock} = 'undef';
103 $opt{d_link} = 'undef';
104}
105
4a9d6100
GS
106if ($opt{uselargefiles} ne 'define') {
107 $opt{lseeksize} = 4;
108 $opt{lseektype} = 'off_t';
109}
110
7a958ec3
BS
111while (<>) {
112 s/~([\w_]+)~/$opt{$1}/g;
113 if (/^([\w_]+)=(.*)$/) {
114 my($k,$v) = ($1,$2);
115 # this depends on cf_time being empty in the template (or we'll
116 # get a loop)
117 if ($k eq 'cf_time') {
118 $_ = "$k='" . localtime(time) . "'\n" if $v =~ /^\s*'\s*'/;
119 }
120 elsif (exists $opt{$k}) {
121 $_ = "$k='$opt{$k}'\n";
122 }
dc050285 123 }
7a958ec3
BS
124 print;
125}