Commit | Line | Data |
c623bd54 |
1 | #!./perl |
68dc0745 |
2 | |
3 | BEGIN { |
c90c0ff4 |
4 | require 5.004; |
d07c2202 |
5 | chdir '..' if !-d 'lib' and -d '..\lib'; |
68dc0745 |
6 | @INC = 'lib'; |
7 | $ENV{PERL5LIB} = 'lib'; |
a29d2910 |
8 | } |
9 | |
10 | use strict; |
60ce2417 |
11 | my ($Is_VMS, $Is_W32, $Is_OS2, $Is_Cygwin, $Is_Darwin, |
12 | $nonono, $dostrip, $versiononly, $silent, $verbose, |
4f048c5d |
13 | $otherperls, $archname,$Is_NetWare, $nwinstall, $nopods); |
5f675712 |
14 | use vars qw /$depth/; |
a29d2910 |
15 | |
16 | BEGIN { |
17f28c40 |
17 | $Is_VMS = $^O eq 'VMS'; |
4a71ed0c |
18 | $Is_W32 = $^O eq 'MSWin32'; |
19 | $Is_OS2 = $^O eq 'os2'; |
146174a9 |
20 | $Is_Cygwin = $^O eq 'cygwin'; |
60ce2417 |
21 | $Is_Darwin = $^O eq 'darwin'; |
17f28c40 |
22 | if ($Is_VMS) { eval 'use VMS::Filespec;' } |
68dc0745 |
23 | } |
24 | |
c2cd2081 |
25 | my $scr_ext = ($Is_VMS ? '.Com' : $Is_W32 ? '.bat' : ''); |
4a71ed0c |
26 | |
a0d0e21e |
27 | use File::Find; |
5f05dabc |
28 | use File::Compare; |
68dc0745 |
29 | use File::Copy (); |
0ecb046b |
30 | use File::Path (); |
354f3b56 |
31 | use ExtUtils::Packlist; |
4633a7c4 |
32 | use Config; |
91a06757 |
33 | use subs qw(unlink link chmod); |
c623bd54 |
34 | |
791b4ad3 |
35 | if ($Config{d_umask}) { |
36 | umask(022); # umasks like 077 aren't that useful for installations |
37 | } |
38 | |
2986a63f |
39 | $Is_NetWare = $Config{osname} eq 'NetWare'; |
40 | if ($Is_NetWare) { |
41 | $Is_W32 = 0; |
42 | $scr_ext = '.pl'; |
43 | } |
44 | |
0ecb046b |
45 | # override the ones in the rest of the script |
68dc0745 |
46 | sub mkpath { |
47 | File::Path::mkpath(@_) unless $nonono; |
0ecb046b |
48 | } |
49 | |
c2cd2081 |
50 | my $mainperldir = "/usr/bin"; |
51 | my $exe_ext = $Config{exe_ext}; |
bee1dbe2 |
52 | |
6ee623d5 |
53 | # Allow ``make install PERLNAME=something_besides_perl'': |
c2cd2081 |
54 | my $perl = defined($ENV{PERLNAME}) ? $ENV{PERLNAME} : 'perl'; |
6ee623d5 |
55 | |
146174a9 |
56 | # This is the base used for versioned names, like "perl5.6.0". |
beb13193 |
57 | # It's separate because a common use of $PERLNAME is to install |
58 | # perl as "perl5", if that's used as base for versioned files you |
146174a9 |
59 | # get "perl55.6.0". |
beb13193 |
60 | my $perl_verbase = defined($ENV{PERLNAME_VERBASE}) |
61 | ? $ENV{PERLNAME_VERBASE} |
62 | : $perl; |
63 | |
5f675712 |
64 | $otherperls = 1; |
c623bd54 |
65 | while (@ARGV) { |
66 | $nonono = 1 if $ARGV[0] eq '-n'; |
f556e5b9 |
67 | $dostrip = 1 if $ARGV[0] eq '-s'; |
c623bd54 |
68 | $versiononly = 1 if $ARGV[0] eq '-v'; |
f4a342c3 |
69 | $versiononly = 0 if $ARGV[0] eq '+v'; |
5f675712 |
70 | $silent = 1 if $ARGV[0] eq '-S'; |
71 | $otherperls = 0 if $ARGV[0] eq '-o'; |
4ad019ef |
72 | $verbose = 1 if $ARGV[0] eq '-V' || $ARGV [0] eq '-n'; |
f4a342c3 |
73 | $archname = 1 if $ARGV[0] eq '-A'; |
2986a63f |
74 | $nwinstall = 1 if $ARGV[0] eq '-netware'; |
4f048c5d |
75 | $nopods = 1 if $ARGV[0] eq '-p'; |
33bd2d8f |
76 | if ($ARGV[0] eq '-?' or $ARGV[0] =~ /^-?-h/) { |
77 | print <<"EOT"; |
78 | Usage $0: [switches] |
79 | -n Don't actually run any commands; just print them. |
80 | -s Run strip on installed binaries. |
81 | -v Only install perl as a binary with the version number in the name. |
82 | (Override whatever config.sh says) |
83 | +v Install perl as "perl" and as a binary with the version number in |
84 | the name. (Override whatever config.sh says) |
85 | -S Silent mode. |
86 | -o Skip checking for other copies of perl in your PATH. |
87 | -V Verbose mode. |
88 | -A Also install perl with the architecture's name in the perl binary's |
89 | name. |
4f048c5d |
90 | -p Don't install the pod files. [This will break use diagnostics;] |
33bd2d8f |
91 | -netware Install correctly on a Netware server. |
92 | EOT |
93 | exit; |
94 | } |
c623bd54 |
95 | shift; |
96 | } |
97 | |
f4a342c3 |
98 | $versiononly = 1 if $Config{versiononly} && !defined $versiononly; |
21dae8a0 |
99 | my (@scripts, @tolink); |
100 | open SCRIPTS, "utils.lst" or die "Can't open utils.lst: $!"; |
101 | while (<SCRIPTS>) { |
102 | next if /^#/; |
103 | next if /#\s*pod\s*=/; # Binary programs need separate treatment |
104 | chomp; |
105 | if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) { |
106 | push @scripts, $1; |
107 | push @tolink, [$1, $2]; |
108 | } else { |
109 | push @scripts, $_; |
110 | } |
111 | } |
112 | close SCRIPTS; |
16d20bd9 |
113 | |
4a71ed0c |
114 | if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; } |
17f28c40 |
115 | |
2e5b8131 |
116 | my @pods = $nopods ? () : (<pod/*.pod>); |
c623bd54 |
117 | |
e8ea6127 |
118 | # Specify here any .pm files that are actually architecture-dependent. |
119 | # (Those included with XS extensions under ext/ are automatically |
120 | # added later.) |
121 | # Now that the default privlib has the full perl version number included, |
0b3bfb33 |
122 | # we no longer have to play the trick of sticking version-specific .pm |
e8ea6127 |
123 | # files under the archlib directory. |
c2cd2081 |
124 | my %archpms = ( |
0b3bfb33 |
125 | Config => 1, |
126 | lib => 1, |
127 | Cwd => 1, |
38b8243a |
128 | ); |
39e571d4 |
129 | |
130 | if ($^O eq 'dos') { |
131 | push(@scripts,'djgpp/fixpmain'); |
132 | $archpms{config} = $archpms{filehand} = 1; |
133 | } |
134 | |
6ee623d5 |
135 | if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) |
136 | { |
137 | push(@scripts, map("$_.exe", @scripts)); |
138 | } |
139 | |
1dd15ed4 |
140 | find(sub { |
68c887af |
141 | if ("$File::Find::dir/$_" =~ m{^ext\b(.*)/([^/]+)\.pm$}) { |
142 | my($path, $modname) = ($1,$2); |
143 | |
144 | # strip trailing component first |
145 | $path =~ s{/[^/]*$}{}; |
146 | |
147 | # strip optional "/lib"; |
148 | $path =~ s{/lib\b}{}; |
149 | |
150 | # strip any leading / |
151 | $path =~ s{^/}{}; |
152 | |
153 | # reconstitute canonical module name |
154 | $modname = "$path/$modname" if length $path; |
155 | |
156 | # remember it |
157 | $archpms{$modname} = 1; |
1dd15ed4 |
158 | } |
159 | }, 'ext'); |
160 | |
68c887af |
161 | # print "[$_]\n" for sort keys %archpms; |
162 | |
146174a9 |
163 | my $ver = $Config{version}; |
f2766b05 |
164 | my $release = substr($],0,3); # Not used currently. |
03284eb6 |
165 | my $patchlevel = substr($],3,2); |
748a9306 |
166 | die "Patchlevel of perl ($patchlevel)", |
cceca5ed |
167 | "and patchlevel of config.sh ($Config{'PERL_VERSION'}) don't match\n" |
168 | if $patchlevel != $Config{'PERL_VERSION'}; |
4633a7c4 |
169 | |
170 | # Fetch some frequently-used items from %Config |
c2cd2081 |
171 | my $installbin = $Config{installbin}; |
172 | my $installscript = $Config{installscript}; |
173 | my $installprivlib = $Config{installprivlib}; |
174 | my $installarchlib = $Config{installarchlib}; |
175 | my $installsitelib = $Config{installsitelib}; |
176 | my $installsitearch = $Config{installsitearch}; |
177 | my $installman1dir = $Config{installman1dir}; |
178 | my $man1ext = $Config{man1ext}; |
179 | my $libperl = $Config{libperl}; |
4633a7c4 |
180 | # Shared library and dynamic loading suffixes. |
c2cd2081 |
181 | my $so = $Config{so}; |
182 | my $dlext = $Config{dlext}; |
146174a9 |
183 | my $dlsrc = $Config{dlsrc}; |
f2766b05 |
184 | if ($^O eq 'os390') { |
185 | my $pwd; |
186 | chomp($pwd=`pwd`); |
187 | my $archlibexp = $Config{archlibexp}; |
188 | my $usedl = $Config{usedl}; |
189 | if ($usedl eq 'define') { |
190 | `./$^X -pibak -e 's{$pwd\/libperl.x}{$archlibexp/CORE/libperl.x}' lib/Config.pm`; |
191 | } |
192 | } |
4633a7c4 |
193 | |
2986a63f |
194 | if ($nwinstall) { |
195 | # This is required only if we are installing on a NetWare server |
196 | $installscript = $Config{installnwscripts}; |
197 | $installprivlib = $Config{installnwlib}; |
198 | $installarchlib = $Config{installnwlib}; |
199 | $installsitelib = $Config{installnwlib}; |
200 | } |
201 | |
c2cd2081 |
202 | my $d_dosuid = $Config{d_dosuid}; |
203 | my $binexp = $Config{binexp}; |
c623bd54 |
204 | |
17f28c40 |
205 | if ($Is_VMS) { # Hang in there until File::Spec hits the big time |
206 | foreach ( \$installbin, \$installscript, \$installprivlib, |
207 | \$installarchlib, \$installsitelib, \$installsitearch, |
208 | \$installman1dir ) { |
209 | $$_ = unixify($$_); $$_ =~ s:/$::; |
210 | } |
211 | } |
212 | |
c623bd54 |
213 | # Do some quick sanity checks. |
214 | |
215 | if ($d_dosuid && $>) { die "You must run as root to install suidperl\n"; } |
216 | |
fe14fcc3 |
217 | $installbin || die "No installbin directory in config.sh\n"; |
7e7af249 |
218 | -d $installbin || mkpath($installbin, $verbose, 0777); |
0ecb046b |
219 | -d $installbin || $nonono || die "$installbin is not a directory\n"; |
220 | -w $installbin || $nonono || die "$installbin is not writable by you\n" |
3edbfbe5 |
221 | unless $installbin =~ m#^/afs/# || $nonono; |
c623bd54 |
222 | |
2986a63f |
223 | if (!$Is_NetWare) { |
39add537 |
224 | -x 'perl' . $exe_ext || die "perl isn't executable!\n"; |
225 | -x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid; |
c623bd54 |
226 | |
9fba8746 |
227 | -f 't/rantests' || $Is_W32 |
1af49140 |
228 | || warn "WARNING: You've never run 'make test' or", |
229 | " some tests failed! (Installing anyway.)\n"; |
2986a63f |
230 | } #if (!$Is_NetWare) |
c623bd54 |
231 | |
2986a63f |
232 | if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) { |
8736538c |
233 | my $perldll; |
234 | |
5f675712 |
235 | if ($Is_Cygwin) { |
236 | $perldll = $libperl; |
b53432e4 |
237 | my $v_e_r_s = $ver; $v_e_r_s =~ tr/./_/; |
238 | $perldll =~ s/(\..*)?$/$v_e_r_s.$dlext/; |
239 | $perldll =~ s/^lib/cyg/; |
5f675712 |
240 | if ($Config{useshrplib} eq 'true') { |
241 | # install ld2 and perlld as well |
242 | foreach ('ld2', 'perlld') { |
243 | safe_unlink("$installbin/$_"); |
244 | copy("$_", "$installbin/$_"); |
245 | chmod(0755, "$installbin/$_"); |
246 | }; |
b53432e4 |
247 | { |
dccaffe8 |
248 | open (LD2, ">$installbin/ld2"); |
b53432e4 |
249 | print LD2 "#!/bin/sh\n#\n# ld wrapper, passes all args to perlld;\n#\n" |
250 | . "for trythis in $installbin/perl\ndo\n if [ -x \$trythis ]\n" |
251 | . " then\n \$trythis $installbin/perlld \"\$\@\"\n" |
252 | . " exit \$?\n fi\ndone\n# hard luck!\necho i see no perl" |
253 | . " executable around there\necho perl is required to build " |
254 | . "dynamic libraries\necho look if the path to perl in /bin/ld2" |
255 | . " is correct\nexit 1\n"; |
256 | close LD2; |
257 | }; |
258 | chmod(0755, "$installbin/ld2"); |
8736538c |
259 | }; |
5f675712 |
260 | } else { |
b962b4fa |
261 | $perldll = 'perl57.' . $dlext; |
5f675712 |
262 | } |
263 | |
264 | if ($dlsrc ne "dl_none.xs") { |
265 | -f $perldll || die "No perl DLL built\n"; |
266 | } |
267 | # Install the DLL |
268 | |
269 | safe_unlink("$installbin/$perldll"); |
270 | copy("$perldll", "$installbin/$perldll"); |
271 | chmod(0755, "$installbin/$perldll"); |
0b3bfb33 |
272 | |
2986a63f |
273 | } # if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) |
eef1cf2a |
274 | |
354f3b56 |
275 | # This will be used to store the packlist |
c2cd2081 |
276 | my $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist"); |
354f3b56 |
277 | |
c623bd54 |
278 | # First we install the version-numbered executables. |
279 | |
17f28c40 |
280 | if ($Is_VMS) { |
6ee623d5 |
281 | safe_unlink("$installbin/$perl$exe_ext"); |
282 | copy("perl$exe_ext", "$installbin/$perl$exe_ext"); |
283 | chmod(0755, "$installbin/$perl$exe_ext"); |
284 | safe_unlink("$installbin/${perl}shr$exe_ext"); |
285 | copy("perlshr$exe_ext", "$installbin/${perl}shr$exe_ext"); |
286 | chmod(0755, "$installbin/${perl}shr$exe_ext"); |
17f28c40 |
287 | } |
1d84e8df |
288 | elsif ($^O eq 'mpeix') { |
289 | # MPE lacks hard links and requires that executables with special |
290 | # capabilities reside in the MPE namespace. |
291 | safe_unlink("$installbin/perl$ver$exe_ext", $Config{perlpath}); |
292 | # Install the primary executable into the MPE namespace as perlpath. |
293 | copy("perl$exe_ext", $Config{perlpath}); |
294 | chmod(0755, $Config{perlpath}); |
295 | # Create a backup copy with the version number. |
296 | link($Config{perlpath}, "$installbin/perl$ver$exe_ext"); |
297 | } |
3f5ee302 |
298 | elsif ($^O ne 'dos') { |
2986a63f |
299 | if (!$Is_NetWare) { |
300 | safe_unlink("$installbin/$perl_verbase$ver$exe_ext"); |
301 | copy("perl$exe_ext", "$installbin/$perl_verbase$ver$exe_ext"); |
302 | strip("$installbin/$perl_verbase$ver$exe_ext"); |
303 | chmod(0755, "$installbin/$perl_verbase$ver$exe_ext"); |
304 | } |
305 | else { |
306 | # If installing onto a NetWare server |
307 | if ($nwinstall) { |
308 | # Copy perl.nlm, echo.nlm, type.nlm, a2p.nlm & cgi2perl.nlm |
309 | mkpath($Config{installnwsystem}, 1, 0777); |
310 | copy("netware\\".$ENV{'MAKE_TYPE'}."\\perl.nlm", $Config{installnwsystem}); |
311 | copy("netware\\testnlm\\echo\\echo.nlm", $Config{installnwsystem}); |
312 | copy("netware\\testnlm\\type\\type.nlm", $Config{installnwsystem}); |
313 | copy("x2p\\a2p.nlm", $Config{installnwsystem}); |
314 | chmod(0755, "$Config{installnwsystem}\\perl.nlm"); |
315 | mkpath($Config{installnwlcgi}, 1, 0777); |
316 | copy("lib\\auto\\cgi2perl\\cgi2perl.nlm", $Config{installnwlcgi}); |
317 | } |
318 | } #if (!$Is_NetWare) |
3f5ee302 |
319 | } |
1d84e8df |
320 | else { |
6ee623d5 |
321 | safe_unlink("$installbin/$perl.exe"); |
322 | copy("perl.exe", "$installbin/$perl.exe"); |
39e571d4 |
323 | } |
c623bd54 |
324 | |
beb13193 |
325 | safe_unlink("$installbin/s$perl_verbase$ver$exe_ext"); |
c623bd54 |
326 | if ($d_dosuid) { |
beb13193 |
327 | copy("suidperl$exe_ext", "$installbin/s$perl_verbase$ver$exe_ext"); |
328 | chmod(04711, "$installbin/s$perl_verbase$ver$exe_ext"); |
c623bd54 |
329 | } |
330 | |
45d8adaa |
331 | # Install library files. |
332 | |
c2cd2081 |
333 | my ($do_installarchlib, $do_installprivlib) = (0, 0); |
0b3bfb33 |
334 | |
7e7af249 |
335 | mkpath($installprivlib, $verbose, 0777); |
336 | mkpath($installarchlib, $verbose, 0777); |
337 | mkpath($installsitelib, $verbose, 0777) if ($installsitelib); |
338 | mkpath($installsitearch, $verbose, 0777) if ($installsitearch); |
4633a7c4 |
339 | |
45d8adaa |
340 | if (chdir "lib") { |
68dc0745 |
341 | $do_installarchlib = ! samepath($installarchlib, '.'); |
342 | $do_installprivlib = ! samepath($installprivlib, '.'); |
146174a9 |
343 | $do_installprivlib = 0 if $versiononly && !($installprivlib =~ m/\Q$ver/); |
45d8adaa |
344 | |
a0d0e21e |
345 | if ($do_installarchlib || $do_installprivlib) { |
346 | find(\&installlib, '.'); |
45d8adaa |
347 | } |
348 | chdir ".." || die "Can't cd back to source directory: $!\n"; |
349 | } |
350 | else { |
351 | warn "Can't cd to lib to install lib files: $!\n"; |
352 | } |
353 | |
1aef975c |
354 | # Install header files and libraries. |
7e7af249 |
355 | mkpath("$installarchlib/CORE", $verbose, 0777); |
c2cd2081 |
356 | my @corefiles; |
17f28c40 |
357 | if ($Is_VMS) { # We did core file selection during build |
0185066f |
358 | my $coredir = "lib/$Config{archname}/$ver/CORE"; |
17f28c40 |
359 | $coredir =~ tr/./_/; |
0185066f |
360 | map { s|^$coredir/||i; } @corefiles = <$coredir/*.*>; |
17f28c40 |
361 | } |
362 | else { |
8736538c |
363 | # [als] hard-coded 'libperl' name... not good! |
17f28c40 |
364 | @corefiles = <*.h libperl*.*>; |
8736538c |
365 | |
17f28c40 |
366 | # AIX needs perl.exp installed as well. |
367 | push(@corefiles,'perl.exp') if $^O eq 'aix'; |
9d7f10f2 |
368 | if ($^O eq 'mpeix') { |
369 | # MPE needs mpeixish.h installed as well. |
7e7af249 |
370 | mkpath("$installarchlib/CORE/mpeix", $verbose, 0777); |
9d7f10f2 |
371 | push(@corefiles,'mpeix/mpeixish.h'); |
372 | } |
17f28c40 |
373 | # If they have built sperl.o... |
374 | push(@corefiles,'sperl.o') if -f 'sperl.o'; |
375 | } |
c2cd2081 |
376 | foreach my $file (@corefiles) { |
aa3cf465 |
377 | # HP-UX (at least) needs to maintain execute permissions |
efc5ad56 |
378 | # on dynamically-loadable libraries. So we do it for all. |
8f1f23e8 |
379 | if (copy_if_diff($file,"$installarchlib/CORE/$file")) { |
f556e5b9 |
380 | if ($file =~ /\.(\Q$so\E|\Q$dlext\E)$/) { |
f556e5b9 |
381 | strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody|darwin)$/; |
60ce2417 |
382 | chmod(0555, "$installarchlib/CORE/$file"); |
8f1f23e8 |
383 | } else { |
384 | chmod(0444, "$installarchlib/CORE/$file"); |
385 | } |
386 | } |
340f689c |
387 | } |
3edbfbe5 |
388 | |
156620fa |
389 | # Install main perl executables |
390 | # Make links to ordinary names if installbin directory isn't current directory. |
391 | |
2986a63f |
392 | if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS && ! $Is_NetWare) { |
6ee623d5 |
393 | safe_unlink("$installbin/$perl$exe_ext", "$installbin/suid$perl$exe_ext"); |
1d84e8df |
394 | if ($^O eq 'mpeix') { |
395 | # MPE doesn't support hard links, so use a symlink. |
396 | # We don't want another cloned copy. |
397 | symlink($Config{perlpath}, "$installbin/perl$exe_ext"); |
7e6b8b1f |
398 | } elsif ($^O eq 'vos') { |
399 | # VOS doesn't support hard links, so use a symlink. |
400 | symlink("$installbin/$perl_verbase$ver$exe_ext", |
401 | "$installbin/$perl$exe_ext"); |
1d84e8df |
402 | } else { |
beb13193 |
403 | link("$installbin/$perl_verbase$ver$exe_ext", |
404 | "$installbin/$perl$exe_ext"); |
1d84e8df |
405 | } |
beb13193 |
406 | link("$installbin/s$perl_verbase$ver$exe_ext", |
0b3bfb33 |
407 | "$installbin/suid$perl$exe_ext") |
156620fa |
408 | if $d_dosuid; |
409 | } |
410 | |
f4a342c3 |
411 | # For development purposes it can be very useful to have multiple perls |
412 | # build for different "architectures" (eg threading or not) simultaneously. |
413 | if ($archname && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS) { |
414 | my $archperl = "$perl_verbase$ver-$Config{archname}$exe_ext"; |
415 | safe_unlink("$installbin/$archperl"); |
eb96f679 |
416 | if ($^O eq 'mpeix') { |
417 | # MPE doesn't support hard links, so use a symlink. |
f4a342c3 |
418 | # We don't want another cloned copy. |
419 | symlink($Config{perlpath}, "$installbin/$archperl"); |
eb96f679 |
420 | } elsif ($^O eq 'vos') { |
421 | # VOS doesn't support hard links, so use a symlink. |
422 | symlink("$installbin/$perl_verbase$ver$exe_ext", |
423 | "$installbin/$archperl"); |
f4a342c3 |
424 | } else { |
425 | link("$installbin/$perl_verbase$ver$exe_ext", |
426 | "$installbin/$archperl"); |
427 | } |
428 | } |
429 | |
a0d0e21e |
430 | # Offer to install perl in a "standard" location |
431 | |
c2cd2081 |
432 | my $mainperl_is_instperl = 0; |
a0d0e21e |
433 | |
a3ed4895 |
434 | if ($Config{installusrbinperl} && $Config{installusrbinperl} eq 'define' && |
2986a63f |
435 | !$versiononly && !$nonono && !$Is_W32 && !$Is_NetWare && !$Is_VMS && -t STDIN && -t STDERR |
68dc0745 |
436 | && -w $mainperldir && ! samepath($mainperldir, $installbin)) { |
c2cd2081 |
437 | my($usrbinperl) = "$mainperldir/$perl$exe_ext"; |
438 | my($instperl) = "$installbin/$perl$exe_ext"; |
439 | my($expinstperl) = "$binexp/$perl$exe_ext"; |
55497cff |
440 | |
441 | # First make sure $usrbinperl is not already the same as the perl we |
442 | # just installed. |
443 | if (-x $usrbinperl) { |
a0d0e21e |
444 | # Try to be clever about mainperl being a symbolic link |
445 | # to binexp/perl if binexp and installbin are different. |
446 | $mainperl_is_instperl = |
68dc0745 |
447 | samepath($usrbinperl, $instperl) || |
448 | samepath($usrbinperl, $expinstperl) || |
a0d0e21e |
449 | (($binexp ne $installbin) && |
55497cff |
450 | (-l $usrbinperl) && |
451 | ((readlink $usrbinperl) eq $expinstperl)); |
a0d0e21e |
452 | } |
835f8a63 |
453 | if (! $mainperl_is_instperl) { |
55497cff |
454 | unlink($usrbinperl); |
1d84e8df |
455 | ( $Config{'d_link'} eq 'define' && |
456 | eval { CORE::link $instperl, $usrbinperl } ) || |
457 | eval { symlink $expinstperl, $usrbinperl } || |
458 | copy($instperl, $usrbinperl); |
459 | |
a0d0e21e |
460 | $mainperl_is_instperl = 1; |
461 | } |
462 | } |
463 | |
b971f6e4 |
464 | # Make links to ordinary names if installbin directory isn't current directory. |
2986a63f |
465 | if (!$Is_NetWare) { |
466 | if (!$versiononly && ! samepath($installbin, 'x2p')) { |
467 | safe_unlink("$installbin/a2p$exe_ext"); |
468 | copy("x2p/a2p$exe_ext", "$installbin/a2p$exe_ext"); |
60ce2417 |
469 | strip("$installbin/a2p$exe_ext"); |
2986a63f |
470 | chmod(0755, "$installbin/a2p$exe_ext"); |
471 | } |
b971f6e4 |
472 | } |
473 | |
474 | # cppstdin is just a script, but it is architecture-dependent, so |
475 | # it can't safely be shared. Place it in $installbin. |
476 | # Note that Configure doesn't build cppstin if it isn't needed, so |
477 | # we skip this if cppstdin doesn't exist. |
68dc0745 |
478 | if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) { |
479 | safe_unlink("$installbin/cppstdin"); |
480 | copy("cppstdin", "$installbin/cppstdin"); |
481 | chmod(0755, "$installbin/cppstdin"); |
b971f6e4 |
482 | } |
483 | |
1a09d0c8 |
484 | sub script_alias { |
485 | my ($installscript, $orig, $alias, $scr_ext) = @_; |
486 | |
eea3e086 |
487 | safe_unlink("$installscript/$alias$scr_ext"); |
1a09d0c8 |
488 | if ($^O eq 'dos' or $Is_VMS or $^O eq 'transit') { |
489 | copy("$installscript/$orig$scr_ext", |
0b3bfb33 |
490 | "$installscript/$alias$scr_ext"); |
7e6b8b1f |
491 | } elsif ($^O eq 'vos') { |
492 | symlink("$installscript/$orig$scr_ext", |
493 | "$installscript/$alias$scr_ext"); |
1a09d0c8 |
494 | } else { |
495 | link("$installscript/$orig$scr_ext", |
496 | "$installscript/$alias$scr_ext"); |
497 | } |
498 | } |
499 | |
c8f392da |
500 | # Install scripts. |
501 | mkpath($installscript, $verbose, 0777); |
502 | if ($versiononly) { |
503 | for (@scripts) { |
504 | (my $base = $_) =~ s#.*/##; |
505 | $base .= $ver; |
506 | copy($_, "$installscript/$base"); |
507 | chmod(0755, "$installscript/$base"); |
508 | } |
b971f6e4 |
509 | |
0b3bfb33 |
510 | for (@tolink) { |
c8f392da |
511 | my ($from, $to) = map { "$_$ver" } @$_; |
512 | (my $frbase = $from) =~ s#.*/##; |
513 | (my $tobase = $to) =~ s#.*/##; |
514 | script_alias($installscript, $frbase, $tobase, $scr_ext); |
515 | } |
516 | } else { |
22e77942 |
517 | for (@scripts) { |
518 | (my $base = $_) =~ s#.*/##; |
519 | copy($_, "$installscript/$base"); |
520 | chmod(0755, "$installscript/$base"); |
b971f6e4 |
521 | } |
22e77942 |
522 | |
0b3bfb33 |
523 | for (@tolink) { |
c8f392da |
524 | my ($from, $to) = @$_; |
21dae8a0 |
525 | (my $frbase = $from) =~ s#.*/##; |
526 | (my $tobase = $to) =~ s#.*/##; |
527 | script_alias($installscript, $frbase, $tobase, $scr_ext); |
528 | } |
b971f6e4 |
529 | } |
530 | |
146174a9 |
531 | # Install pod pages. Where? I guess in $installprivlib/pod |
532 | # ($installprivlib/pods for cygwin). |
b971f6e4 |
533 | |
60ce2417 |
534 | my $pod = ($Is_Cygwin || $Is_Darwin) ? 'pods' : 'pod'; |
d56c5707 |
535 | if ( !$versiononly || ($installprivlib =~ m/\Q$ver/)) { |
7e7af249 |
536 | mkpath("${installprivlib}/$pod", $verbose, 0777); |
91a06757 |
537 | |
538 | # If Perl 5.003's perldiag.pod is there, rename it. |
146174a9 |
539 | if (open POD, "${installprivlib}/$pod/perldiag.pod") { |
91a06757 |
540 | read POD, $_, 4000; |
541 | close POD; |
542 | # Some of Perl 5.003's diagnostic messages ended with periods. |
543 | if (/^=.*\.$/m) { |
146174a9 |
544 | my ($from, $to) = ("${installprivlib}/$pod/perldiag.pod", |
545 | "${installprivlib}/$pod/perldiag-5.003.pod"); |
f311e742 |
546 | print " rename $from $to"; |
91a06757 |
547 | rename($from, $to) |
548 | or warn "Couldn't rename $from to $to: $!\n" |
549 | unless $nonono; |
550 | } |
551 | } |
552 | |
146174a9 |
553 | for (@pods) { |
554 | # $_ is a name like pod/perl.pod |
555 | (my $base = $_) =~ s#.*/##; |
556 | copy_if_diff($_, "${installprivlib}/$pod/${base}"); |
b971f6e4 |
557 | } |
91a06757 |
558 | |
b971f6e4 |
559 | } |
560 | |
a0d0e21e |
561 | # Check to make sure there aren't other perls around in installer's |
562 | # path. This is probably UNIX-specific. Check all absolute directories |
563 | # in the path except for where public executables are supposed to live. |
564 | # Also skip $mainperl if the user opted to have it be a link to the |
565 | # installed perl. |
566 | |
5f675712 |
567 | if (!$versiononly && $otherperls) { |
146174a9 |
568 | my ($path, @path); |
2986a63f |
569 | my $dirsep = ($Is_OS2 || $Is_W32 || $Is_NetWare) ? ';' : ':' ; |
b971f6e4 |
570 | ($path = $ENV{"PATH"}) =~ s:\\:/:g ; |
571 | @path = split(/$dirsep/, $path); |
17f28c40 |
572 | if ($Is_VMS) { |
573 | my $i = 0; |
574 | while (exists $ENV{'DCL$PATH' . $i}) { |
c2cd2081 |
575 | my $dir = unixpath($ENV{'DCL$PATH' . $i}); $dir =~ s-/$--; |
17f28c40 |
576 | push(@path,$dir); |
577 | } |
578 | } |
c2cd2081 |
579 | my @otherperls; |
160a7e37 |
580 | my %otherperls; |
b971f6e4 |
581 | for (@path) { |
582 | next unless m,^/,; |
583 | # Use &samepath here because some systems have other dirs linked |
584 | # to $mainperldir (like SunOS) |
68dc0745 |
585 | next if samepath($_, $binexp); |
586 | next if ($mainperl_is_instperl && samepath($_, $mainperldir)); |
160a7e37 |
587 | my $otherperl = "$_/$perl$exe_ext"; |
588 | next if $otherperls{$otherperl}++; |
589 | push(@otherperls, $otherperl) |
590 | if (-x $otherperl && ! -d $otherperl); |
b971f6e4 |
591 | } |
592 | if (@otherperls) { |
5f675712 |
593 | warn "\nWarning: $perl appears in your path in the following " . |
b971f6e4 |
594 | "locations beyond where\nwe just installed it:\n"; |
595 | for (@otherperls) { |
5f675712 |
596 | warn " ", $_, "\n"; |
b971f6e4 |
597 | } |
5f675712 |
598 | warn "\n"; |
a0d0e21e |
599 | } |
b971f6e4 |
600 | |
a0d0e21e |
601 | } |
602 | |
3f9aafa0 |
603 | $packlist->write() unless $nonono; |
94b11c62 |
604 | print " Installation complete\n" if $verbose; |
c623bd54 |
605 | |
606 | exit 0; |
607 | |
608 | ############################################################################### |
609 | |
a0d0e21e |
610 | sub yn { |
c2cd2081 |
611 | my($prompt) = @_; |
612 | my($answer); |
613 | my($default) = $prompt =~ m/\[([yn])\]\s*$/i; |
802cdca0 |
614 | print STDERR $prompt; |
a0d0e21e |
615 | chop($answer = <STDIN>); |
616 | $answer = $default if $answer =~ m/^\s*$/; |
617 | ($answer =~ m/^[yY]/); |
618 | } |
619 | |
c623bd54 |
620 | sub unlink { |
c2cd2081 |
621 | my(@names) = @_; |
39add537 |
622 | my($cnt) = 0; |
c623bd54 |
623 | |
17f28c40 |
624 | return scalar(@names) if $Is_VMS; |
625 | |
c2cd2081 |
626 | foreach my $name (@names) { |
c623bd54 |
627 | next unless -e $name; |
2986a63f |
628 | chmod 0777, $name if ($Is_OS2 || $Is_W32 || $Is_Cygwin || $Is_NetWare); |
94b11c62 |
629 | print " unlink $name\n" if $verbose; |
0b3bfb33 |
630 | ( CORE::unlink($name) and ++$cnt |
39add537 |
631 | or warn "Couldn't unlink $name: $!\n" ) unless $nonono; |
c623bd54 |
632 | } |
39add537 |
633 | return $cnt; |
c623bd54 |
634 | } |
635 | |
e50aee73 |
636 | sub safe_unlink { |
17f28c40 |
637 | return if $nonono or $Is_VMS; |
c2cd2081 |
638 | my @names = @_; |
639 | foreach my $name (@names) { |
e50aee73 |
640 | next unless -e $name; |
2986a63f |
641 | chmod 0777, $name if ($Is_OS2 || $Is_W32 || $Is_NetWare); |
94b11c62 |
642 | print " unlink $name\n" if $verbose; |
39add537 |
643 | next if CORE::unlink($name); |
e50aee73 |
644 | warn "Couldn't unlink $name: $!\n"; |
645 | if ($! =~ /busy/i) { |
94b11c62 |
646 | print " mv $name $name.old\n" if $verbose; |
68dc0745 |
647 | safe_rename($name, "$name.old") |
648 | or warn "Couldn't rename $name: $!\n"; |
e50aee73 |
649 | } |
650 | } |
651 | } |
652 | |
68dc0745 |
653 | sub safe_rename { |
c2cd2081 |
654 | my($from,$to) = @_; |
55a105fd |
655 | if (-f $to and not unlink($to)) { |
e50aee73 |
656 | my($i); |
657 | for ($i = 1; $i < 50; $i++) { |
91a06757 |
658 | last if rename($to, "$to.$i"); |
e50aee73 |
659 | } |
0b3bfb33 |
660 | warn("Cannot rename to `$to.$i': $!"), return 0 |
39add537 |
661 | if $i >= 50; # Give up! |
e50aee73 |
662 | } |
663 | link($from,$to) || return 0; |
55a105fd |
664 | unlink($from); |
e50aee73 |
665 | } |
666 | |
c623bd54 |
667 | sub link { |
15792f64 |
668 | my($from,$to) = @_; |
669 | my($success) = 0; |
c623bd54 |
670 | |
94b11c62 |
671 | print $verbose ? " ln $from $to\n" : " $to\n" unless $silent; |
39add537 |
672 | eval { |
68dc0745 |
673 | CORE::link($from, $to) |
674 | ? $success++ |
7bac28a0 |
675 | : ($from =~ m#^/afs/# || $to =~ m#^/afs/#) |
676 | ? die "AFS" # okay inside eval {} |
146174a9 |
677 | : die "Couldn't link $from to $to: $!\n" |
68dc0745 |
678 | unless $nonono; |
354f3b56 |
679 | $packlist->{$to} = { from => $from, type => 'link' }; |
39add537 |
680 | }; |
681 | if ($@) { |
146174a9 |
682 | warn $@; |
94b11c62 |
683 | print $verbose ? " cp $from $to\n" : " $to\n" unless $silent; |
5f675712 |
684 | print " creating new version of $to\n" |
685 | if $Is_VMS and -e $to and !$silent; |
68dc0745 |
686 | File::Copy::copy($from, $to) |
687 | ? $success++ |
688 | : warn "Couldn't copy $from to $to: $!\n" |
689 | unless $nonono; |
354f3b56 |
690 | $packlist->{$to} = { type => 'file' }; |
39add537 |
691 | } |
15792f64 |
692 | $success; |
c623bd54 |
693 | } |
694 | |
695 | sub chmod { |
c2cd2081 |
696 | my($mode,$name) = @_; |
c623bd54 |
697 | |
39e571d4 |
698 | return if ($^O eq 'dos'); |
94b11c62 |
699 | printf " chmod %o %s\n", $mode, $name if $verbose; |
68dc0745 |
700 | CORE::chmod($mode,$name) |
701 | || warn sprintf("Couldn't chmod %o %s: $!\n", $mode, $name) |
702 | unless $nonono; |
703 | } |
704 | |
705 | sub copy { |
706 | my($from,$to) = @_; |
707 | |
94b11c62 |
708 | print $verbose ? " cp $from $to\n" : " $to\n" unless $silent; |
5f675712 |
709 | print " creating new version of $to\n" if $Is_VMS and -e $to and !$silent; |
68dc0745 |
710 | File::Copy::copy($from, $to) |
711 | || warn "Couldn't copy $from to $to: $!\n" |
712 | unless $nonono; |
354f3b56 |
713 | $packlist->{$to} = { type => 'file' }; |
c623bd54 |
714 | } |
715 | |
a0d0e21e |
716 | sub samepath { |
c2cd2081 |
717 | my($p1, $p2) = @_; |
eef1cf2a |
718 | |
2986a63f |
719 | return (lc($p1) eq lc($p2)) if ($Is_W32 || $Is_NetWare); |
a0d0e21e |
720 | |
75f92628 |
721 | if ($p1 ne $p2) { |
c2cd2081 |
722 | my($dev1, $ino1, $dev2, $ino2); |
a0d0e21e |
723 | ($dev1, $ino1) = stat($p1); |
724 | ($dev2, $ino2) = stat($p2); |
725 | ($dev1 == $dev2 && $ino1 == $ino2); |
726 | } |
727 | else { |
728 | 1; |
729 | } |
730 | } |
731 | |
732 | sub installlib { |
733 | my $dir = $File::Find::dir; |
734 | $dir =~ s#^\.(?![^/])/?##; |
0ecb046b |
735 | local($depth) = $dir ? "lib/$dir" : "lib"; |
a0d0e21e |
736 | |
737 | my $name = $_; |
efc5ad56 |
738 | |
146174a9 |
739 | # Ignore RCS and CVS directories. |
740 | if (($name eq 'CVS' or $name eq 'RCS') and -d $name) { |
efc5ad56 |
741 | $File::Find::prune = 1; |
742 | return; |
743 | } |
0b3bfb33 |
744 | |
146174a9 |
745 | # ignore patch backups, RCS files, emacs backup & temp files and the |
b695f709 |
746 | # .exists files, .PL files, and .t files. |
747 | return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$}; |
748 | |
a0d0e21e |
749 | $name = "$dir/$name" if $dir ne ''; |
750 | |
751 | my $installlib = $installprivlib; |
1dd15ed4 |
752 | if ($dir =~ /^auto/ || |
eef1cf2a |
753 | ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) || |
2986a63f |
754 | ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) |
eef1cf2a |
755 | ) { |
a0d0e21e |
756 | $installlib = $installarchlib; |
757 | return unless $do_installarchlib; |
758 | } else { |
759 | return unless $do_installprivlib; |
760 | } |
761 | |
a0d0e21e |
762 | if (-f $_) { |
5cc330c8 |
763 | if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) { |
3edbfbe5 |
764 | $installlib = $installprivlib; |
765 | #We're installing *.al and *.ix files into $installprivlib, |
766 | #but we have to delete old *.al and *.ix files from the 5.000 |
767 | #distribution: |
75f92628 |
768 | #This might not work because $archname might have changed. |
55a105fd |
769 | unlink("$installarchlib/$name"); |
3edbfbe5 |
770 | } |
354f3b56 |
771 | $packlist->{"$installlib/$name"} = { type => 'file' }; |
5f05dabc |
772 | if (compare($_, "$installlib/$name") || $nonono) { |
55a105fd |
773 | unlink("$installlib/$name"); |
7e7af249 |
774 | mkpath("$installlib/$dir", $verbose, 0777); |
75f92628 |
775 | # HP-UX (at least) needs to maintain execute permissions |
776 | # on dynamically-loaded libraries. |
60ce2417 |
777 | if ($Is_NetWare && !$nwinstall) { |
778 | # Don't copy .nlp,.nlm files, doesn't make sense on Windows and also |
779 | # if copied will give problems when building new extensions. |
780 | # Has to be copied if we are installing on a NetWare server and hence |
781 | # the check !$nwinstall |
782 | if (!(/\.(?:nlp|nlm|bs)$/)) { |
783 | copy_if_diff($_, "$installlib/$name") |
2986a63f |
784 | and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, |
60ce2417 |
785 | "$installlib/$name"); |
786 | } |
787 | } else { |
788 | if (copy_if_diff($_, "$installlib/$name")) { |
789 | if ($name =~ /\.(so|$dlext)$/o) { |
790 | strip("-S", "$installlib/$name") if $^O =~ /^(rhapsody|darwin)$/; |
791 | chmod(0555, "$installlib/$name"); |
792 | } else { |
793 | strip("-S", "$installlib/$name") |
794 | if ($name =~ /\.a$/o and $^O =~ /^(rhapsody|darwin)$/); |
795 | chmod(0444, "$installlib/$name"); |
796 | } |
797 | } |
798 | } #if ($Is_NetWare) |
a0d0e21e |
799 | } |
a0d0e21e |
800 | } |
801 | } |
3edbfbe5 |
802 | |
16d20bd9 |
803 | # Copy $from to $to, only if $from is different than $to. |
804 | # Also preserve modification times for .a libraries. |
805 | # On some systems, if you do |
806 | # ranlib libperl.a |
807 | # cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a |
808 | # and then try to link against the installed libperl.a, you might |
809 | # get an error message to the effect that the symbol table is older |
810 | # than the library. |
aa3cf465 |
811 | # Return true if copying occurred. |
68dc0745 |
812 | |
813 | sub copy_if_diff { |
3edbfbe5 |
814 | my($from,$to)=@_; |
8530e788 |
815 | return 1 if (($^O eq 'VMS') && (-d $from)); |
f0963acb |
816 | -f $from || warn "$0: $from not found"; |
354f3b56 |
817 | $packlist->{$to} = { type => 'file' }; |
5f05dabc |
818 | if (compare($from, $to) || $nonono) { |
68dc0745 |
819 | safe_unlink($to); # In case we don't have write permissions. |
0ecb046b |
820 | if ($nonono) { |
821 | $from = $depth . "/" . $from if $depth; |
822 | } |
68dc0745 |
823 | copy($from, $to); |
824 | # Restore timestamps if it's a .a library or for OS/2. |
4a71ed0c |
825 | if (!$nonono && ($Is_OS2 || $to =~ /\.a$/)) { |
68dc0745 |
826 | my ($atime, $mtime) = (stat $from)[8,9]; |
16d20bd9 |
827 | utime $atime, $mtime, $to; |
828 | } |
aa3cf465 |
829 | 1; |
3edbfbe5 |
830 | } |
831 | } |
8f1f23e8 |
832 | |
833 | sub strip |
834 | { |
835 | my(@args) = @_; |
836 | |
f556e5b9 |
837 | return unless $dostrip; |
838 | |
8f1f23e8 |
839 | my @opts; |
840 | while (@args && $args[0] =~ /^(-\w+)$/) { |
841 | push @opts, shift @args; |
842 | } |
843 | |
844 | foreach my $file (@args) { |
845 | if (-f $file) { |
60ce2417 |
846 | if ($verbose) { |
847 | print " strip " . join(' ', @opts); |
848 | print " " if (@opts); |
849 | print "$file\n"; |
850 | } |
8f1f23e8 |
851 | system("strip", @opts, $file); |
852 | } else { |
94b11c62 |
853 | print "# file '$file' skipped\n" if $verbose; |
8f1f23e8 |
854 | } |
855 | } |
856 | } |