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