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