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