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