Commit | Line | Data |
---|---|---|
8e232993 | 1 | use 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 | |
4 | sub 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 | |
17 | sub 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 | 37 | my %opt; |
8e232993 | 38 | |
7a958ec3 BS |
39 | my $optref = loadopts(); |
40 | while (@{$optref} && $optref->[0] =~ /^([\w_]+)=(.*)$/) { | |
41 | $opt{$1}=$2; | |
42 | shift(@{$optref}); | |
43 | } | |
7bac28a0 | 44 | |
338584c0 | 45 | FindExt::scan_ext("../cpan"); |
d284e2f9 | 46 | FindExt::scan_ext("../dist"); |
ca58f2ae YST |
47 | FindExt::scan_ext("../ext"); |
48 | FindExt::set_static_extensions(split ' ', $opt{'static_ext'}); | |
1076f1fd | 49 | |
ca58f2ae YST |
50 | $opt{'nonxs_ext'} = join(' ',FindExt::nonxs_ext()) || ' '; |
51 | $opt{'static_ext'} = join(' ',FindExt::static_ext()) || ' '; | |
47f9f84c JH |
52 | $opt{'dynamic_ext'} = join(' ',FindExt::dynamic_ext()) || ' '; |
53 | $opt{'extensions'} = join(' ',FindExt::extensions()) || ' '; | |
ca58f2ae | 54 | $opt{'known_extensions'} = join(' ',FindExt::known_extensions()) || ' '; |
8e232993 | 55 | |
52b0428e GS |
56 | my $pl_h = '../patchlevel.h'; |
57 | ||
52b0428e GS |
58 | if (-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 | 67 | else { |
273cf8d1 | 68 | die "Can't find $pl_h: $!"; |
c90c0ff4 | 69 | } |
a9277f44 SH |
70 | |
71 | my $patch_file = '../.patch'; | |
72 | ||
73 | if (-e $patch_file) { | |
74 | open my $fh, "<", $patch_file or die "Can't open $patch_file: $!"; | |
75 | chomp($opt{PERL_PATCHLEVEL} = <$fh>); | |
76 | close $fh; | |
77 | } | |
78 | ||
273cf8d1 | 79 | $opt{VERSION} = "$opt{PERL_REVISION}.$opt{PERL_VERSION}.$opt{PERL_SUBVERSION}"; |
fd390a00 | 80 | $opt{'version_patchlevel_string'} = "version $opt{PERL_VERSION} subversion $opt{PERL_SUBVERSION}"; |
79a3ac15 | 81 | $opt{'version_patchlevel_string'} .= " patch $opt{PERL_PATCHLEVEL}" if exists $opt{PERL_PATCHLEVEL}; |
52b0428e | 82 | |
d51fa99c SH |
83 | my $ver = `ver 2>nul`; |
84 | if ($ver =~ /Version (\d+\.\d+)/) { | |
85 | $opt{'osvers'} = $1; | |
86 | } | |
87 | else { | |
88 | $opt{'osvers'} = '4.0'; | |
89 | } | |
dbd14d13 | 90 | |
2018b347 | 91 | if (exists $opt{cc}) { |
378eeda7 | 92 | # cl version detection borrowed from Test::Smoke's configsmoke.pl |
2018b347 SH |
93 | if ($opt{cc} eq 'cl') { |
94 | my $output = `cl --version 2>&1`; | |
95 | $opt{ccversion} = $output =~ /^.*Version\s+([\d.]+)/ ? $1 : '?'; | |
96 | } | |
e08b586c S |
97 | elsif ($opt{cc} =~ /\bgcc\b/) { |
98 | chomp($opt{gccversion} = `$opt{cc} -dumpversion`); | |
2018b347 SH |
99 | } |
100 | } | |
101 | ||
d484a829 GS |
102 | $opt{'cf_by'} = $ENV{USERNAME} unless $opt{'cf_by'}; |
103 | $opt{'cf_email'} = $opt{'cf_by'} . '@' . (gethostbyname('localhost'))[0] | |
104 | unless $opt{'cf_email'}; | |
852c2e52 | 105 | $opt{'usemymalloc'} = 'y' if $opt{'d_mymalloc'} eq 'define'; |
d484a829 | 106 | |
80252599 GS |
107 | $opt{libpth} = mungepath($opt{libpth}) if exists $opt{libpth}; |
108 | $opt{incpath} = mungepath($opt{incpath}) if exists $opt{incpath}; | |
109 | ||
f7e8b52a SH |
110 | # change the lseeksize and lseektype from their canned default values (which |
111 | # are set-up for a non-uselargefiles build) if we are building with | |
378eeda7 SH |
112 | # uselargefiles. |
113 | if ($opt{uselargefiles} eq 'define') { | |
f7e8b52a SH |
114 | $opt{lseeksize} = 8; |
115 | if ($opt{cc} eq 'cl') { | |
116 | $opt{lseektype} = '__int64'; | |
117 | } | |
e08b586c | 118 | elsif ($opt{cc} =~ /\bgcc\b/) { |
f7e8b52a SH |
119 | $opt{lseektype} = 'long long'; |
120 | } | |
4a9d6100 GS |
121 | } |
122 | ||
049aaf37 | 123 | # change the s{GM|LOCAL}TIME_{min|max} for VS2005 (aka VC 8) and |
4b7e285e JD |
124 | # VS2008 (aka VC 9) or higher (presuming that later versions will have |
125 | # at least the range of that). | |
126 | if ($opt{cc} eq 'cl' and $opt{ccversion} =~ /^(\d+)/) { | |
127 | my $ccversion = $1; | |
92e71c91 | 128 | if ($ccversion >= 14) { |
4b7e285e | 129 | $opt{sGMTIME_max} = 32535291599; |
049aaf37 | 130 | $opt{sLOCALTIME_max} = 32535244799; |
4b7e285e JD |
131 | } |
132 | } | |
133 | ||
1fd1213a | 134 | if ($opt{useithreads} eq 'define' && $opt{ccflags} =~ /-DPERL_IMPLICIT_SYS\b/) { |
27bdbd07 SH |
135 | $opt{d_pseudofork} = 'define'; |
136 | } | |
137 | ||
7a958ec3 BS |
138 | while (<>) { |
139 | s/~([\w_]+)~/$opt{$1}/g; | |
140 | if (/^([\w_]+)=(.*)$/) { | |
141 | my($k,$v) = ($1,$2); | |
142 | # this depends on cf_time being empty in the template (or we'll | |
143 | # get a loop) | |
144 | if ($k eq 'cf_time') { | |
145 | $_ = "$k='" . localtime(time) . "'\n" if $v =~ /^\s*'\s*'/; | |
146 | } | |
147 | elsif (exists $opt{$k}) { | |
148 | $_ = "$k='$opt{$k}'\n"; | |
149 | } | |
dc050285 | 150 | } |
7a958ec3 BS |
151 | print; |
152 | } |