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