This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Pass $(MAKE) as one quoted commandline argument, to converge with make_ext.pl
[perl5.git] / installperl
1 #!./perl -w
2
3 BEGIN {
4     require 5.004;
5     chdir '..' if !-d 'lib' and -d '../lib';
6     @INC = 'lib';
7     $ENV{PERL5LIB} = 'lib';
8
9     # This needs to be at BEGIN time, before any use of Config
10     require './install_lib.pl';
11 }
12
13 use strict;
14 use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $Is_Darwin $Is_NetWare
15             %opts $packlist);
16 my ($dostrip, $versiononly, $force,
17     $otherperls, $archname, $nwinstall, $nopods);
18 # Not sure how easy it would be to refactor to remove the need for local $depth
19 # below
20 use vars qw /$depth/;
21
22 BEGIN {
23     if ($Is_VMS) { eval 'use VMS::Filespec;' }
24 }
25
26 my $scr_ext = ($Is_VMS ? '.Com' : $Is_W32 ? '.bat' : '');
27
28 use File::Find;
29 use File::Compare;
30 use File::Copy ();
31 use File::Path ();
32 use ExtUtils::Packlist;
33 use Cwd;
34
35 if ($Is_NetWare) {
36     $Is_W32 = 0;
37     $scr_ext = '.pl';
38 }
39
40 # override the ones in the rest of the script
41 sub mkpath {
42     File::Path::mkpath(@_) unless $opts{notify};
43 }
44
45 my $mainperldir = "/usr/bin";
46 my $exe_ext = $Config{exe_ext};
47
48 # Allow "make install PERLNAME=something_besides_perl":
49 my $perl = defined($ENV{PERLNAME}) ? $ENV{PERLNAME} : 'perl';
50
51 # This is the base used for versioned names, like "perl5.6.0".
52 # It's separate because a common use of $PERLNAME is to install
53 # perl as "perl5", if that's used as base for versioned files you
54 # get "perl55.6.0".
55 my $perl_verbase = defined($ENV{PERLNAME_VERBASE})
56                     ? $ENV{PERLNAME_VERBASE}
57                     : $perl;
58 my $dbg = '';
59 my $ndbg = '';
60 if ( $Is_VMS ) {
61     if ( defined $Config{usevmsdebug} ) {
62         if ( $Config{usevmsdebug} eq 'define' ) {
63             $dbg = 'dbg';
64             $ndbg = 'ndbg';
65         }
66     }
67 }
68
69 $otherperls = 1;
70 # This little hack simplifies making the code after the comment "Fetch some
71 # frequently-used items from %Config" warning free. With $opts{destdir} always
72 # defined, it's also possible to make the s/\Q$opts{destdir}\E unconditional.
73
74 $opts{destdir} = '';
75 # Consider refactoring this to use Getopt::Long once Getopt::Long's planned
76 # feature is implemented, to distinguish + and - options.
77 while (@ARGV) {
78     $opts{notify} = 1 if $ARGV[0] eq '-n';
79     $dostrip = 1 if $ARGV[0] eq '-s';
80     $versiononly = 1 if $ARGV[0] eq '-v';
81     $versiononly = 0 if $ARGV[0] eq '+v';
82     $opts{silent} = 1 if $ARGV[0] eq '-S';
83     $otherperls = 0 if $ARGV[0] eq '-o';
84     $force = 1 if $ARGV[0] eq '-f';
85     $opts{verbose} = 1 if $ARGV[0] eq '-V' || $ARGV [0] eq '-n';
86     $archname = 1 if $ARGV[0] eq '-A';
87     $nwinstall = 1 if $ARGV[0] eq '-netware';
88     $nopods = 1 if $ARGV[0] eq '-p';
89     $opts{destdir} = $1 if $ARGV[0] =~ /^-?-destdir=(.*)$/;
90     if ($ARGV[0] eq '-?' or $ARGV[0] =~ /^-?-h/) {
91         print <<"EOT";
92 Usage $0: [switches]
93   -n        Don't actually run any commands; just print them.
94   -s        Run strip on installed binaries.
95   -v        Only install perl as a binary with the version number in the name.
96             (Override whatever config.sh says)
97   +v        Install perl as "perl" and as a binary with the version number in
98             the name.  (Override whatever config.sh says)
99   -S        Silent mode.
100   -f        Force installation (don't check if same version is there)
101   -o        Skip checking for other copies of perl in your PATH.
102   -V        Verbose mode.
103   -A        Also install perl with the architecture's name in the perl binary's
104             name.
105   -p        Don't install the pod files. [This will break use diagnostics;]
106   -netware  Install correctly on a Netware server.
107   -destdir  Prefix installation directories by this string.
108 EOT
109         exit;
110     }
111     shift;
112 }
113
114 $versiononly = 1 if $Config{versiononly} && !defined $versiononly;
115 my (@scripts, @tolink);
116 open SCRIPTS, "utils.lst" or die "Can't open utils.lst: $!";
117 while (<SCRIPTS>) {
118     next if /^#/;
119     s/\s*#\s*pod\s*=.*//; # install script regardless of pod location
120     next if /a2p/; # a2p is binary, to be installed separately
121     chomp;
122     if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) {
123         push @scripts, $1;
124         push @tolink, [$1, $2];
125     } else {
126         push @scripts, $_;
127     }
128 }
129 close SCRIPTS;
130
131 if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; }
132
133 my @pods = $nopods ? () : (<pod/*.pod>, 'x2p/a2p.pod');
134
135 # Specify here any .pm files that are actually architecture-dependent.
136 # (Those included with XS extensions under ext/ are automatically
137 # added later.)
138 # Now that the default privlib has the full perl version number included,
139 # we no longer have to play the trick of sticking version-specific .pm
140 # files under the archlib directory.
141 my %archpms = (
142     Config => 1,
143     lib => 1,
144     Cwd => 1,
145 );
146
147 if ($^O eq 'dos') {
148     push(@scripts,'djgpp/fixpmain');
149     $archpms{config} = $archpms{filehand} = 1;
150 }
151
152 if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) {
153     push(@scripts, map("$_.exe", @scripts));
154 }
155
156 # Exclude nonxs extensions that are not architecture dependent
157 my @nonxs = grep(!/^Errno$/, split(' ', $Config{'nonxs_ext'}));
158
159 find(sub {
160     if (($File::Find::name =~ m{^ext\b(.*)/([^/]+)\.pm$}) &&
161         ! grep { $File::Find::name =~ /^ext\/$_/ } @nonxs)
162     {
163         my($path, $modname) = ($1,$2);
164
165         # strip to optional "/lib", or remove trailing component
166         $path =~ s{.*/lib\b}{} or $path =~ s{/[^/]*$}{};
167
168         # strip any leading /
169         $path =~ s{^/}{};
170
171         # reconstitute canonical module name
172         $modname = "$path/$modname" if length $path;
173
174         # remember it
175         $archpms{$modname} = 1;
176     }
177 }, 'ext');
178
179 # print "[$_]\n" for sort keys %archpms;
180
181 my $ver = $Config{version};
182 my $release = substr($],0,3);   # Not used currently.
183 my $patchlevel = substr($],3,2);
184 die "Patchlevel of perl ($patchlevel)",
185     "and patchlevel of config.sh ($Config{'PERL_VERSION'}) don't match\n"
186         if $patchlevel != $Config{'PERL_VERSION'};
187
188 # Fetch some frequently-used items from %Config
189 my $installbin = "$opts{destdir}$Config{installbin}";
190 my $installscript = "$opts{destdir}$Config{installscript}";
191 my $installprivlib = "$opts{destdir}$Config{installprivlib}";
192 my $installarchlib = "$opts{destdir}$Config{installarchlib}";
193 my $installsitelib = "$opts{destdir}$Config{installsitelib}";
194 my $installsitearch = "$opts{destdir}$Config{installsitearch}";
195 my $installman1dir = "$opts{destdir}$Config{installman1dir}";
196 my $man1ext = $Config{man1ext};
197 my $libperl = $Config{libperl};
198 # Shared library and dynamic loading suffixes.
199 my $so = $Config{so};
200 my $dlext = $Config{dlext};
201 my $dlsrc = $Config{dlsrc};
202 if ($^O eq 'os390') {
203     my $pwd;
204     chomp($pwd=`pwd`);
205     my $archlibexp = $Config{archlibexp};
206     my $usedl = $Config{usedl};
207     if ($usedl eq 'define') {
208         `./$^X -pibak -e 's{$pwd\/libperl.x}{$archlibexp/CORE/libperl.x}' lib/Config.pm`;
209     }
210 }
211
212 if ($nwinstall) {
213     # This is required only if we are installing on a NetWare server
214     $installscript = $Config{installnwscripts};
215     $installprivlib = $Config{installnwlib};
216     $installarchlib = $Config{installnwlib};
217     $installsitelib = $Config{installnwlib};
218 }
219
220 my $binexp = $Config{binexp};
221
222 if ($Is_VMS) {  # Hang in there until File::Spec hits the big time
223     foreach ( \$installbin,     \$installscript,  \$installprivlib,
224               \$installarchlib, \$installsitelib, \$installsitearch,
225               \$installman1dir ) {
226         $$_ = unixify($$_);  $$_ =~ s:/$::;
227     }
228 }
229
230 # Do some quick sanity checks.
231
232    $installbin          || die "No installbin directory in config.sh\n";
233 -d $installbin          || mkpath($installbin, $opts{verbose}, 0777);
234 -d $installbin          || $opts{notify} || die "$installbin is not a directory\n";
235 -w $installbin          || $opts{notify} || die "$installbin is not writable by you\n"
236         unless $installbin =~ m#^/afs/# || $opts{notify};
237
238 if (!$Is_NetWare) {
239 if (!$Is_VMS) {
240 -x 'perl' . $exe_ext    || die "perl isn't executable!\n";
241 }
242 else {
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 }
248
249 -f 't/rantests'         || $Is_W32
250                         || warn "WARNING: You've never run 'make test' or",
251                                 " some tests failed! (Installing anyway.)\n";
252 } #if (!$Is_NetWare)
253
254 # This will be used to store the packlist
255 $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist");
256
257 if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) {
258     my $perldll;
259
260     if ($Is_Cygwin) {
261         $perldll = $libperl;
262     } else {
263         $perldll = 'perl5'.$Config{patchlevel}.'.'.$dlext;
264     }
265
266     if ($dlsrc ne "dl_none.xs") {
267         -f $perldll || die "No perl DLL built\n";
268     }
269
270     # Install the DLL
271     safe_unlink("$installbin/$perldll");
272     copy("$perldll", "$installbin/$perldll");
273     chmod(0755, "$installbin/$perldll");
274     $packlist->{"$installbin/$perldll"} = { type => 'file' };
275 } # if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin)
276
277 # First we install the version-numbered executables.
278
279 if ($Is_VMS) {
280     safe_unlink("$installbin/perl_setup.com");
281     copy("perl_setup.com", "$installbin/perl_setup.com");
282     chmod(0755, "$installbin/perl_setup.com");
283     safe_unlink("$installbin/$dbg$perl$exe_ext");
284     copy("$dbg$perl$exe_ext", "$installbin/$dbg$perl$exe_ext");
285     chmod(0755, "$installbin/$dbg$perl$exe_ext");
286     safe_unlink("$installbin/$dbg${perl}shr$exe_ext");
287     copy("$dbg${perl}shr$exe_ext", "$installbin/$dbg${perl}shr$exe_ext");
288     chmod(0755, "$installbin/$dbg${perl}shr$exe_ext");
289     if ($ndbg) {
290         safe_unlink("$installbin/$ndbg$perl$exe_ext");
291         copy("$ndbg$perl$exe_ext", "$installbin/$ndbg$perl$exe_ext");
292         chmod(0755, "$installbin/$ndbg$perl$exe_ext");
293         safe_unlink("$installbin/${dbg}a2p$exe_ext");
294         copy("x2p/${dbg}a2p$exe_ext", "$installbin/${dbg}a2p$exe_ext");
295         chmod(0755, "$installbin/${dbg}a2p$exe_ext");
296     }
297 }
298 elsif ($^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 }
308 elsif ($^O ne 'dos') {
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});
327         }
328     } #if (!$Is_NetWare)
329 }
330 else {
331     safe_unlink("$installbin/$perl.exe");
332     copy("perl.exe", "$installbin/$perl.exe");
333 }
334
335 # Install library files.
336
337 my ($do_installarchlib, $do_installprivlib) = (0, 0);
338 my $vershort = ($Is_Cygwin and !$Config{usedevel}) ? substr($ver,0,-2) : $ver;
339
340 mkpath($installprivlib, $opts{verbose}, 0777);
341 mkpath($installarchlib, $opts{verbose}, 0777);
342 mkpath($installsitelib, $opts{verbose}, 0777) if ($installsitelib);
343 mkpath($installsitearch, $opts{verbose}, 0777) if ($installsitearch);
344
345 if (chdir "lib") {
346     $do_installarchlib = ! samepath($installarchlib, '.');
347     $do_installprivlib = ! samepath($installprivlib, '.');
348     $do_installprivlib = 0 if $versiononly && !($installprivlib =~ m/\Q$vershort/);
349
350     if ($do_installarchlib || $do_installprivlib) {
351         find(\&installlib, '.');
352     }
353     chdir ".." || die "Can't cd back to source directory: $!\n";
354 }
355 else {
356     warn "Can't cd to lib to install lib files: $!\n";
357 }
358
359 # Install header files and libraries.
360 mkpath("$installarchlib/CORE", $opts{verbose}, 0777);
361 my @corefiles;
362 if ($Is_VMS) {  # We did core file selection during build
363     my $coredir = "lib/$Config{archname}/$ver/CORE";
364     $coredir =~ tr/./_/;
365     map { s|^$coredir/||i; } @corefiles = <$coredir/*.*>;
366 }
367 elsif ($Is_Cygwin) { # On Cygwin symlink it to CORE to make Makefile happy
368     @corefiles = <*.h libperl*.* perl*$Config{lib_ext}>;
369     my $coredll = "$installarchlib/CORE/$libperl";
370     safe_unlink($coredll);
371     ( $Config{'d_link'} eq 'define' &&
372       eval {
373           CORE::link("$installbin/$libperl", $coredll);
374           $packlist->{$coredll} = { from => "$installbin/$libperl",
375                                     type => 'link' };
376       }
377     ) ||
378     eval {
379         symlink("$installbin/$libperl", $coredll);
380         $packlist->{$coredll} = { from => "$installbin/$libperl",
381                                   type => 'link' };
382     } ||
383     ( copy("$installbin/$libperl", $coredll) &&
384       push(@corefiles, $coredll)
385     )
386 } else {
387     # [als] hard-coded 'libperl' name... not good!
388     @corefiles = <*.h libperl*.* perl*$Config{lib_ext}>;
389
390     # AIX needs perl.exp installed as well.
391     push(@corefiles,'perl.exp') if $^O eq 'aix';
392     if ($^O eq 'mpeix') {
393         # MPE needs mpeixish.h installed as well.
394         mkpath("$installarchlib/CORE/mpeix", $opts{verbose}, 0777);
395         push(@corefiles,'mpeix/mpeixish.h');
396     }
397     # If they have built sperl.o...
398     push(@corefiles,'sperl.o') if -f 'sperl.o';
399 }
400 foreach my $file (@corefiles) {
401     # HP-UX (at least) needs to maintain execute permissions
402     # on dynamically-loadable libraries. So we do it for all.
403     if (copy_if_diff($file,"$installarchlib/CORE/$file")) {
404         if ($file =~ /\.(\Q$so\E|\Q$dlext\E)$/) {
405             strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody|darwin)$/;
406             chmod(0555, "$installarchlib/CORE/$file");
407         } else {
408             chmod(0444, "$installarchlib/CORE/$file");
409         }
410     }
411 }
412
413 # Install main perl executables
414 # Make links to ordinary names if installbin directory isn't current directory.
415
416 if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS && ! $Is_NetWare) {
417     safe_unlink("$installbin/$perl$exe_ext", "$installbin/suid$perl$exe_ext");
418     if ($^O eq 'mpeix') {
419         # MPE doesn't support hard links, so use a symlink.
420         # We don't want another cloned copy.
421         symlink($Config{perlpath}, "$installbin/perl$exe_ext");
422     } elsif ($^O eq 'vos') {
423         # VOS doesn't support hard links, so use a symlink.
424         symlink("$installbin/$perl_verbase$ver$exe_ext",
425                 "$installbin/$perl$exe_ext");
426     } else {
427         link("$installbin/$perl_verbase$ver$exe_ext",
428                 "$installbin/$perl$exe_ext");
429     }
430 }
431
432 # For development purposes it can be very useful to have multiple perls
433 # build for different "architectures" (eg threading or not) simultaneously.
434 if ($archname && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS) {
435     my $archperl = "$perl_verbase$ver-$Config{archname}$exe_ext";
436     safe_unlink("$installbin/$archperl");
437     if ($^O eq 'mpeix') {
438         # MPE doesn't support hard links, so use a symlink.
439         # We don't want another cloned copy.
440         symlink($Config{perlpath}, "$installbin/$archperl");
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");
445     } else {
446         link("$installbin/$perl_verbase$ver$exe_ext", "$installbin/$archperl");
447     }
448 }
449
450 # Offer to install perl in a "standard" location
451
452 my $mainperl_is_instperl = 0;
453
454 if ($Config{installusrbinperl} && $Config{installusrbinperl} eq 'define' &&
455     !$versiononly && !$opts{notify} && !$Is_W32 && !$Is_NetWare && !$Is_VMS && -t STDIN && -t STDERR
456         && -w $mainperldir && ! samepath($mainperldir, $installbin)) {
457     my($usrbinperl)     = "$mainperldir/$perl$exe_ext";
458     my($instperl)       = "$installbin/$perl$exe_ext";
459     my($expinstperl)    = "$binexp/$perl$exe_ext";
460
461     # First make sure $usrbinperl is not already the same as the perl we
462     # just installed.
463     if (-x $usrbinperl) {
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 =
467             samepath($usrbinperl, $instperl) ||
468             samepath($usrbinperl, $expinstperl) ||
469              (($binexp ne $installbin) &&
470               (-l $usrbinperl) &&
471               ((readlink $usrbinperl) eq $expinstperl));
472     }
473     if (! $mainperl_is_instperl) {
474         unlink($usrbinperl);
475         ( $Config{'d_link'} eq 'define' &&
476           eval { CORE::link $instperl, $usrbinperl } )  ||
477         eval { symlink $expinstperl, $usrbinperl }      ||
478         copy($instperl, $usrbinperl);
479
480         $mainperl_is_instperl = 1;
481     }
482 }
483
484 # Make links to ordinary names if installbin directory isn't current directory.
485 if (!$Is_NetWare && $dbg eq '') {
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     }
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.
500 if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) {
501     safe_unlink("$installbin/cppstdin");
502     copy("cppstdin", "$installbin/cppstdin");
503     chmod(0755, "$installbin/cppstdin");
504 }
505
506 sub script_alias {
507     my ($installscript, $orig, $alias, $scr_ext) = @_;
508
509     safe_unlink("$installscript/$alias$scr_ext");
510     if ($^O eq 'dos' or $Is_VMS or $^O eq 'transit') {
511         copy("$installscript/$orig$scr_ext",
512              "$installscript/$alias$scr_ext");
513     } elsif ($^O eq 'vos') {
514         symlink("$installscript/$orig$scr_ext",
515                 "$installscript/$alias$scr_ext");
516     } else {
517         link("$installscript/$orig$scr_ext",
518              "$installscript/$alias$scr_ext");
519     }
520 }
521
522 # Install scripts.
523 mkpath($installscript, $opts{verbose}, 0777);
524 if ($versiononly) {
525     for (@scripts) {
526         (my $base = $_) =~ s#.*/##;
527         $base .= $ver;
528         copy($_,    "$installscript/$base");
529         chmod(0755, "$installscript/$base");
530     }
531
532     for (@tolink) {
533         my ($from, $to) = map { "$_$ver" } @$_;
534         (my $frbase = $from) =~ s#.*/##;
535         (my $tobase = $to) =~ s#.*/##;
536         script_alias($installscript, $frbase, $tobase, $scr_ext);
537     }
538 } else {
539     for (@scripts) {
540         (my $base = $_) =~ s#.*/##;
541         copy($_, "$installscript/$base");
542         chmod(0755, "$installscript/$base");
543     }
544
545     for (@tolink) {
546         my ($from, $to) = @$_;
547         (my $frbase = $from) =~ s#.*/##;
548         (my $tobase = $to) =~ s#.*/##;
549         script_alias($installscript, $frbase, $tobase, $scr_ext);
550     }
551 }
552
553 # Install pod pages.  Where? I guess in $installprivlib/pod
554 # ($installprivlib/pods for cygwin).
555
556 my $pod = ($Is_Cygwin || $Is_Darwin || $Is_VMS || $Is_W32) ? 'pods' : 'pod';
557 if ( !$versiononly || ($installprivlib =~ m/\Q$vershort/)) {
558     mkpath("${installprivlib}/$pod", $opts{verbose}, 0777);
559
560     # If Perl 5.003's perldiag.pod is there, rename it.
561     if (open POD, "${installprivlib}/$pod/perldiag.pod") {
562         read POD, $_, 4000;
563         close POD;
564         # Some of Perl 5.003's diagnostic messages ended with periods.
565         if (/^=.*\.$/m) {
566             my ($from, $to) = ("${installprivlib}/$pod/perldiag.pod",
567                                "${installprivlib}/$pod/perldiag-5.003.pod");
568             print "  rename $from $to";
569             rename($from, $to)
570                 or warn "Couldn't rename $from to $to: $!\n"
571                 unless $opts{notify};
572         }
573     }
574
575     for (@pods) {
576         # $_ is a name like  pod/perl.pod
577         (my $base = $_) =~ s#.*/##;
578         copy_if_diff($_, "${installprivlib}/$pod/${base}");
579     }
580
581 }
582
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
589 if (!$versiononly && $otherperls) {
590     my ($path, @path);
591     my $dirsep = ($Is_OS2 || $Is_W32 || $Is_NetWare) ? ';' : ':' ;
592     ($path = $ENV{"PATH"}) =~ s:\\:/:g ;
593     @path = split(/$dirsep/, $path);
594     if ($Is_VMS) {
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         }
600     }
601     my @otherperls;
602     my %otherperls;
603     for (@path) {
604         next unless m,^/,;
605         # Use &samepath here because some systems have other dirs linked
606         # to $mainperldir (like SunOS)
607         next unless -d;
608         next if samepath($_, $binexp);
609         next if samepath($_, cwd());
610         next if ($mainperl_is_instperl && samepath($_, $mainperldir));
611         my $otherperl = "$_/$perl$exe_ext";
612         next if $otherperls{$otherperl}++;
613         push(@otherperls, $otherperl)
614             if (-x $otherperl && ! -d $otherperl);
615     }
616     if (@otherperls) {
617         warn "\nWarning: $perl appears in your path in the following " .
618             "locations beyond where\nwe just installed it:\n";
619         for (@otherperls) {
620             warn "    ", $_, "\n";
621         }
622         warn "\n";
623     }
624
625 }
626
627 $packlist->write() unless $opts{notify};
628 print "  Installation complete\n" if $opts{verbose};
629
630 exit 0;
631
632 ###############################################################################
633
634 # If these are needed elsewhere, move them into install_lib.pl rather than
635 # copying them.
636
637 sub yn {
638     my($prompt) = @_;
639     my($answer);
640     my($default) = $prompt =~ m/\[([yn])\]\s*$/i;
641     print STDERR $prompt;
642     chop($answer = <STDIN>);
643     $answer = $default if $answer =~ m/^\s*$/;
644     ($answer =~ m/^[yY]/);
645 }
646
647 sub safe_unlink {
648     return if $opts{notify} or $Is_VMS;
649     my @names = @_;
650     foreach my $name (@names) {
651         next unless -e $name;
652         chmod 0777, $name if ($Is_OS2 || $Is_W32 || $Is_NetWare);
653         print "  unlink $name\n" if $opts{verbose};
654         next if CORE::unlink($name);
655         warn "Couldn't unlink $name: $!\n";
656         if ($! =~ /busy/i) {
657             print "  mv $name $name.old\n" if $opts{verbose};
658             safe_rename($name, "$name.old")
659                 or warn "Couldn't rename $name: $!\n";
660         }
661     }
662 }
663
664 sub safe_rename {
665     my($from,$to) = @_;
666     if (-f $to and not unlink($to)) {
667         my($i);
668         for ($i = 1; $i < 50; $i++) {
669             last if rename($to, "$to.$i");
670         }
671         warn("Cannot rename to `$to.$i': $!"), return 0
672            if $i >= 50; # Give up!
673     }
674     link($from,$to) || return 0;
675     unlink($from);
676 }
677
678 sub copy {
679     my($from,$to) = @_;
680
681     my $xto = $to;
682     $xto =~ s/^\Q$opts{destdir}\E//;
683     print $opts{verbose} ? "  cp $from $xto\n" : "  $xto\n"
684         unless $opts{silent};
685     print "  creating new version of $xto\n"
686         if $Is_VMS and -e $to and !$opts{silent};
687     unless ($opts{notify} or File::Copy::copy($from, $to)) {
688         # Might have been that F::C::c can't overwrite the target
689         warn "Couldn't copy $from to $to: $!\n"
690             unless -f $to and (chmod(0666, $to), unlink $to)
691                    and File::Copy::copy($from, $to);
692     }
693     $packlist->{$xto} = { type => 'file' };
694 }
695
696 sub installlib {
697     my $dir = $File::Find::dir;
698     $dir =~ s#^\.(?![^/])/?##;
699     local($depth) = $dir ? "lib/$dir" : "lib";
700
701     my $name = $_;
702
703     # Ignore version control directories.
704     if ($name =~ /^(?:CVS|RCS|SCCS|\.svn)\z/ and -d $name) {
705         $File::Find::prune = 1;
706         return;
707     }
708
709     # ignore patch backups, RCS files, emacs backup & temp files and the
710     # .exists files, .PL files, and test files.
711     return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.plc$|\.t$|^test\.pl$|^dbm_filter_util.pl$} ||
712               $dir  =~ m{/t(?:/|$)};
713     # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp
714     # scripts in lib/ExtUtils, the prove script in lib/Test/Harness,
715     # the corelist script from lib/Module/CoreList/bin and ptar* in
716     # lib/Archive/Tar/bin, the config_data script in lib/Module/Build/scripts
717     # (they're installed later with other utils)
718     return if $name =~ /^(?:cpan|instmodsh|prove|corelist|ptar|cpan2dist|cpanp|cpanp-run-perl|ptardiff|config_data)\z/;
719     # ignore the Makefiles
720     return if $name =~ /^makefile$/i;
721     # ignore the test extensions
722     return if $dir =~ m{\bXS/(?:APItest|Typemap)\b};
723     return if $name =~ m{\b(?:APItest|Typemap)\.pm$};
724     # ignore the demo files
725     return if $dir =~ /\b(?:demos?|eg)\b/;
726
727     # ignore READMEs, MANIFESTs, INSTALL docs, META.ymls and change logs.
728     # Changes.e2x and README.e2x are needed by enc2xs.
729     return if $name =~ m{^(?:README(?:\.\w+)?)$} && $name ne 'README.e2x';
730     return if $name =~ m{^(?:MANIFEST|META\.yml)$};
731     return if $name =~ m{^(?:INSTALL|TODO|BUGS|CREDITS)$}i;
732     return if $name =~ m{^change(?:s|log)(?:\.libnet)?$}i;
733     return if $name =~ m{^(?:SIGNATURE|PAUSE200\d\.pub)$}; # CPAN files
734     return if $name =~ m{^(?:NOTES|PATCHING)$}; # ExtUtils files
735
736     # if using a shared perl library then ignore:
737     # - static library files [of statically linked extensions];
738     # - import library files and export library files (only present on Win32
739     #   anyway?) and empty bootstrap files [of dynamically linked extensions].
740     return if $Config{useshrplib} eq 'true' and
741              ($name =~ /$Config{_a}$/ or $name =~ /\.exp$/ or ($name =~ /\.bs$/ and -z $name));
742
743     $name = "$dir/$name" if $dir ne '';
744
745     my $installlib = $installprivlib;
746     if ($dir =~ /^auto/ ||
747           ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) ||
748           ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) ||
749           $name=~/^Config_(heavy\|git)\.pl\z/
750        ) {
751         $installlib = $installarchlib;
752         return unless $do_installarchlib;
753     } else {
754         return unless $do_installprivlib;
755     }
756
757     if (-f $_) {
758         if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$])) {
759             $installlib = $installprivlib;
760             #We're installing *.al and *.ix files into $installprivlib,
761             #but we have to delete old *.al and *.ix files from the 5.000
762             #distribution:
763             #This might not work because $archname might have changed.
764             unlink("$installarchlib/$name");
765         }
766         my $xname = "$installlib/$name";
767         $xname =~ s/^\Q$opts{destdir}\E//;
768         $packlist->{$xname} = { type => 'file' };
769         if ($force || compare($_, "$installlib/$name") || $opts{notify}) {
770             unlink("$installlib/$name");
771             mkpath("$installlib/$dir", $opts{verbose}, 0777);
772             # HP-UX (at least) needs to maintain execute permissions
773             # on dynamically-loaded libraries.
774             if ($Is_NetWare && !$nwinstall) {
775                 # Don't copy .nlp,.nlm files, doesn't make sense on Windows and also
776                 # if copied will give problems when building new extensions.
777                 # Has to be copied if we are installing on a NetWare server and hence
778                 # the check !$nwinstall
779                 if (!(/\.(?:nlp|nlm|bs)$/)) {
780                     copy_if_diff($_, "$installlib/$name")
781                         and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444,
782                                   "$installlib/$name");
783                 }
784            } else {
785                 if (copy_if_diff($_, "$installlib/$name")) {
786                     if ($name =~ /\.(so|$dlext)$/o) {
787                         strip("-S", "$installlib/$name") if $^O =~ /^(rhapsody|darwin)$/;
788                         chmod(0555, "$installlib/$name");
789                     } else {
790                         strip("-S", "$installlib/$name")
791                             if ($name =~ /\.a$/o and $^O =~ /^(rhapsody|darwin)$/);
792                         chmod(0444, "$installlib/$name");
793                     }
794                 }
795             } #if ($Is_NetWare)
796         }
797     }
798 }
799
800 # Copy $from to $to, only if $from is different than $to.
801 # Also preserve modification times for .a libraries.
802 # On some systems, if you do
803 #   ranlib libperl.a
804 #   cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a
805 # and then try to link against the installed libperl.a, you might
806 # get an error message to the effect that the symbol table is older
807 # than the library.
808 # Return true if copying occurred.
809
810 sub copy_if_diff {
811     my($from,$to)=@_;
812     return 1 if (($^O eq 'VMS') && (-d $from));
813     my $xto = $to;
814     $xto =~ s/^\Q$opts{destdir}\E//;
815     my $perlpodbadsymlink;
816     if ($from =~ m!^pod/perl[\w-]+\.pod$! &&
817         -l $from &&
818         ! -e $from) {
819         # Some Linux implementations have problems traversing over
820         # multiple symlinks (when going over NFS?) and fail to read
821         # the symlink target.  Combine this with the fact that some
822         # of the pod files (the perl$OS.pod) are symlinks (to ../README.$OS),
823         # and you end up with those pods not getting installed.
824         $perlpodbadsymlink = 1;
825     }
826     -f $from || $perlpodbadsymlink || warn "$0: $from not found";
827     $packlist->{$xto} = { type => 'file' };
828     if ($force || compare($from, $to) || $opts{notify}) {
829         safe_unlink($to);   # In case we don't have write permissions.
830         if ($opts{notify}) {
831             $from = $depth . "/" . $from if $depth;
832         }
833         if ($perlpodbadsymlink && $from =~ m!^pod/perl(.+)\.pod$!) {
834             $from = "README.$1";
835         }
836         copy($from, $to);
837         # Restore timestamps if it's a .a library or for OS/2.
838         if (!$opts{notify} && ($Is_OS2 || $to =~ /\.a$/)) {
839             my ($atime, $mtime) = (stat $from)[8,9];
840             utime $atime, $mtime, $to;
841         }
842         1;
843     }
844 }
845
846 sub strip
847 {
848     my(@args) = @_;
849
850     return unless $dostrip;
851
852     my @opts;
853     while (@args && $args[0] =~ /^(-\w+)$/) {
854         push @opts, shift @args;
855     }
856
857     foreach my $file (@args) {
858         if (-f $file) {
859             if ($opts{verbose}) {
860                 print "  strip " . join(' ', @opts);
861                 print " " if (@opts);
862                 print "$file\n";
863             }
864             system("strip", @opts, $file);
865         } else {
866             print "# file '$file' skipped\n" if $opts{verbose};
867         }
868     }
869 }