5 chdir '..' if !-d 'lib' and -d '../lib';
7 $ENV{PERL5LIB} = 'lib';
9 # This needs to be at BEGIN time, before any use of Config
10 require './install_lib.pl';
14 use vars qw($Is_VMS $Is_W32 $Is_OS2 $Is_Cygwin $Is_Darwin $Is_NetWare
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
23 if ($Is_VMS) { eval 'use VMS::Filespec;' }
26 my $scr_ext = ($Is_VMS ? '.Com' : $Is_W32 ? '.bat' : '');
32 use ExtUtils::Packlist;
40 # override the ones in the rest of the script
42 File::Path::mkpath(@_) unless $opts{notify};
45 my $mainperldir = "/usr/bin";
46 my $exe_ext = $Config{exe_ext};
48 # Allow "make install PERLNAME=something_besides_perl":
49 my $perl = defined($ENV{PERLNAME}) ? $ENV{PERLNAME} : 'perl';
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
55 my $perl_verbase = defined($ENV{PERLNAME_VERBASE})
56 ? $ENV{PERLNAME_VERBASE}
61 if ( defined $Config{usevmsdebug} ) {
62 if ( $Config{usevmsdebug} eq 'define' ) {
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.
75 # Consider refactoring this to use Getopt::Long once Getopt::Long's planned
76 # feature is implemented, to distinguish + and - options.
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/) {
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)
100 -f Force installation (don't check if same version is there)
101 -o Skip checking for other copies of perl in your PATH.
103 -A Also install perl with the architecture's name in the perl binary's
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.
114 $versiononly = 1 if $Config{versiononly} && !defined $versiononly;
115 my (@scripts, @tolink);
116 open SCRIPTS, "utils.lst" or die "Can't open utils.lst: $!";
119 s/\s*#\s*pod\s*=.*//; # install script regardless of pod location
120 next if /a2p/; # a2p is binary, to be installed separately
122 if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) {
124 push @tolink, [$1, $2];
131 if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; }
133 my @pods = $nopods ? () : (<pod/*.pod>, 'x2p/a2p.pod');
135 # Specify here any .pm files that are actually architecture-dependent.
136 # (Those included with XS extensions under ext/ are automatically
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.
148 push(@scripts,'djgpp/fixpmain');
149 $archpms{config} = $archpms{filehand} = 1;
152 if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) {
153 push(@scripts, map("$_.exe", @scripts));
156 # Exclude nonxs extensions that are not architecture dependent
157 my @nonxs = grep(!/^Errno$/, split(' ', $Config{'nonxs_ext'}));
160 if (($File::Find::name =~ m{^ext\b(.*)/([^/]+)\.pm$}) &&
161 ! grep { $File::Find::name =~ /^ext\/$_/ } @nonxs)
163 my($path, $modname) = ($1,$2);
165 # strip to optional "/lib", or remove trailing component
166 $path =~ s{.*/lib\b}{} or $path =~ s{/[^/]*$}{};
168 # strip any leading /
171 # reconstitute canonical module name
172 $modname = "$path/$modname" if length $path;
175 $archpms{$modname} = 1;
179 # print "[$_]\n" for sort keys %archpms;
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'};
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') {
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`;
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};
220 my $d_dosuid = $Config{d_dosuid};
221 my $binexp = $Config{binexp};
223 if ($Is_VMS) { # Hang in there until File::Spec hits the big time
224 foreach ( \$installbin, \$installscript, \$installprivlib,
225 \$installarchlib, \$installsitelib, \$installsitearch,
227 $$_ = unixify($$_); $$_ =~ s:/$::;
231 # Do some quick sanity checks.
233 if (!$opts{notify} && $d_dosuid && $>) { die "You must run as root to install suidperl\n"; }
235 $installbin || die "No installbin directory in config.sh\n";
236 -d $installbin || mkpath($installbin, $opts{verbose}, 0777);
237 -d $installbin || $opts{notify} || die "$installbin is not a directory\n";
238 -w $installbin || $opts{notify} || die "$installbin is not writable by you\n"
239 unless $installbin =~ m#^/afs/# || $opts{notify};
243 -x 'perl' . $exe_ext || die "perl isn't executable!\n";
246 -x $ndbg . 'perl' . $exe_ext || die "${ndbg}perl$exe_ext isn't executable!\n";
248 -x $dbg . 'perl' . $exe_ext || die "${dbg}perl$exe_ext isn't executable!\n";
251 -x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid;
253 -f 't/rantests' || $Is_W32
254 || warn "WARNING: You've never run 'make test' or",
255 " some tests failed! (Installing anyway.)\n";
258 # This will be used to store the packlist
259 $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist");
261 if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) {
267 $perldll = 'perl5'.$Config{patchlevel}.'.'.$dlext;
270 if ($dlsrc ne "dl_none.xs") {
271 -f $perldll || die "No perl DLL built\n";
275 safe_unlink("$installbin/$perldll");
276 copy("$perldll", "$installbin/$perldll");
277 chmod(0755, "$installbin/$perldll");
278 $packlist->{"$installbin/$perldll"} = { type => 'file' };
279 } # if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin)
281 # First we install the version-numbered executables.
284 safe_unlink("$installbin/perl_setup.com");
285 copy("perl_setup.com", "$installbin/perl_setup.com");
286 chmod(0755, "$installbin/perl_setup.com");
287 safe_unlink("$installbin/$dbg$perl$exe_ext");
288 copy("$dbg$perl$exe_ext", "$installbin/$dbg$perl$exe_ext");
289 chmod(0755, "$installbin/$dbg$perl$exe_ext");
290 safe_unlink("$installbin/$dbg${perl}shr$exe_ext");
291 copy("$dbg${perl}shr$exe_ext", "$installbin/$dbg${perl}shr$exe_ext");
292 chmod(0755, "$installbin/$dbg${perl}shr$exe_ext");
294 safe_unlink("$installbin/$ndbg$perl$exe_ext");
295 copy("$ndbg$perl$exe_ext", "$installbin/$ndbg$perl$exe_ext");
296 chmod(0755, "$installbin/$ndbg$perl$exe_ext");
297 safe_unlink("$installbin/${dbg}a2p$exe_ext");
298 copy("x2p/${dbg}a2p$exe_ext", "$installbin/${dbg}a2p$exe_ext");
299 chmod(0755, "$installbin/${dbg}a2p$exe_ext");
302 elsif ($^O eq 'mpeix') {
303 # MPE lacks hard links and requires that executables with special
304 # capabilities reside in the MPE namespace.
305 safe_unlink("$installbin/perl$ver$exe_ext", $Config{perlpath});
306 # Install the primary executable into the MPE namespace as perlpath.
307 copy("perl$exe_ext", $Config{perlpath});
308 chmod(0755, $Config{perlpath});
309 # Create a backup copy with the version number.
310 link($Config{perlpath}, "$installbin/perl$ver$exe_ext");
312 elsif ($^O ne 'dos') {
314 safe_unlink("$installbin/$perl_verbase$ver$exe_ext");
315 copy("perl$exe_ext", "$installbin/$perl_verbase$ver$exe_ext");
316 strip("$installbin/$perl_verbase$ver$exe_ext");
317 chmod(0755, "$installbin/$perl_verbase$ver$exe_ext");
320 # If installing onto a NetWare server
322 # Copy perl.nlm, echo.nlm, type.nlm, a2p.nlm & cgi2perl.nlm
323 mkpath($Config{installnwsystem}, 1, 0777);
324 copy("netware\\".$ENV{'MAKE_TYPE'}."\\perl.nlm", $Config{installnwsystem});
325 copy("netware\\testnlm\\echo\\echo.nlm", $Config{installnwsystem});
326 copy("netware\\testnlm\\type\\type.nlm", $Config{installnwsystem});
327 copy("x2p\\a2p.nlm", $Config{installnwsystem});
328 chmod(0755, "$Config{installnwsystem}\\perl.nlm");
329 mkpath($Config{installnwlcgi}, 1, 0777);
330 copy("lib\\auto\\cgi2perl\\cgi2perl.nlm", $Config{installnwlcgi});
335 safe_unlink("$installbin/$perl.exe");
336 copy("perl.exe", "$installbin/$perl.exe");
339 safe_unlink("$installbin/s$perl_verbase$ver$exe_ext");
341 copy("suidperl$exe_ext", "$installbin/s$perl_verbase$ver$exe_ext");
342 chmod(04711, "$installbin/s$perl_verbase$ver$exe_ext");
345 # Install library files.
347 my ($do_installarchlib, $do_installprivlib) = (0, 0);
348 my $vershort = ($Is_Cygwin and !$Config{usedevel}) ? substr($ver,0,-2) : $ver;
350 mkpath($installprivlib, $opts{verbose}, 0777);
351 mkpath($installarchlib, $opts{verbose}, 0777);
352 mkpath($installsitelib, $opts{verbose}, 0777) if ($installsitelib);
353 mkpath($installsitearch, $opts{verbose}, 0777) if ($installsitearch);
356 $do_installarchlib = ! samepath($installarchlib, '.');
357 $do_installprivlib = ! samepath($installprivlib, '.');
358 $do_installprivlib = 0 if $versiononly && !($installprivlib =~ m/\Q$vershort/);
360 if ($do_installarchlib || $do_installprivlib) {
361 find(\&installlib, '.');
363 chdir ".." || die "Can't cd back to source directory: $!\n";
366 warn "Can't cd to lib to install lib files: $!\n";
369 # Install header files and libraries.
370 mkpath("$installarchlib/CORE", $opts{verbose}, 0777);
372 if ($Is_VMS) { # We did core file selection during build
373 my $coredir = "lib/$Config{archname}/$ver/CORE";
375 map { s|^$coredir/||i; } @corefiles = <$coredir/*.*>;
377 elsif ($Is_Cygwin) { # On Cygwin symlink it to CORE to make Makefile happy
378 @corefiles = <*.h libperl*.* perl*$Config{lib_ext}>;
379 my $coredll = "$installarchlib/CORE/$libperl";
380 safe_unlink($coredll);
381 ( $Config{'d_link'} eq 'define' &&
383 CORE::link("$installbin/$libperl", $coredll);
384 $packlist->{$coredll} = { from => "$installbin/$libperl",
389 symlink("$installbin/$libperl", $coredll);
390 $packlist->{$coredll} = { from => "$installbin/$libperl",
393 ( copy("$installbin/$libperl", $coredll) &&
394 push(@corefiles, $coredll)
397 # [als] hard-coded 'libperl' name... not good!
398 @corefiles = <*.h libperl*.* perl*$Config{lib_ext}>;
400 # AIX needs perl.exp installed as well.
401 push(@corefiles,'perl.exp') if $^O eq 'aix';
402 if ($^O eq 'mpeix') {
403 # MPE needs mpeixish.h installed as well.
404 mkpath("$installarchlib/CORE/mpeix", $opts{verbose}, 0777);
405 push(@corefiles,'mpeix/mpeixish.h');
407 # If they have built sperl.o...
408 push(@corefiles,'sperl.o') if -f 'sperl.o';
410 foreach my $file (@corefiles) {
411 # HP-UX (at least) needs to maintain execute permissions
412 # on dynamically-loadable libraries. So we do it for all.
413 if (copy_if_diff($file,"$installarchlib/CORE/$file")) {
414 if ($file =~ /\.(\Q$so\E|\Q$dlext\E)$/) {
415 strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody|darwin)$/;
416 chmod(0555, "$installarchlib/CORE/$file");
418 chmod(0444, "$installarchlib/CORE/$file");
423 # Install main perl executables
424 # Make links to ordinary names if installbin directory isn't current directory.
426 if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS && ! $Is_NetWare) {
427 safe_unlink("$installbin/$perl$exe_ext", "$installbin/suid$perl$exe_ext");
428 if ($^O eq 'mpeix') {
429 # MPE doesn't support hard links, so use a symlink.
430 # We don't want another cloned copy.
431 symlink($Config{perlpath}, "$installbin/perl$exe_ext");
432 } elsif ($^O eq 'vos') {
433 # VOS doesn't support hard links, so use a symlink.
434 symlink("$installbin/$perl_verbase$ver$exe_ext",
435 "$installbin/$perl$exe_ext");
437 link("$installbin/$perl_verbase$ver$exe_ext",
438 "$installbin/$perl$exe_ext");
440 link("$installbin/$perl_verbase$ver$exe_ext",
441 "$installbin/suid$perl$exe_ext")
445 # For development purposes it can be very useful to have multiple perls
446 # build for different "architectures" (eg threading or not) simultaneously.
447 if ($archname && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS) {
448 my $archperl = "$perl_verbase$ver-$Config{archname}$exe_ext";
449 safe_unlink("$installbin/$archperl");
450 if ($^O eq 'mpeix') {
451 # MPE doesn't support hard links, so use a symlink.
452 # We don't want another cloned copy.
453 symlink($Config{perlpath}, "$installbin/$archperl");
454 } elsif ($^O eq 'vos') {
455 # VOS doesn't support hard links, so use a symlink.
456 symlink("$installbin/$perl_verbase$ver$exe_ext",
457 "$installbin/$archperl");
459 link("$installbin/$perl_verbase$ver$exe_ext", "$installbin/$archperl");
463 # Offer to install perl in a "standard" location
465 my $mainperl_is_instperl = 0;
467 if ($Config{installusrbinperl} && $Config{installusrbinperl} eq 'define' &&
468 !$versiononly && !$opts{notify} && !$Is_W32 && !$Is_NetWare && !$Is_VMS && -t STDIN && -t STDERR
469 && -w $mainperldir && ! samepath($mainperldir, $installbin)) {
470 my($usrbinperl) = "$mainperldir/$perl$exe_ext";
471 my($instperl) = "$installbin/$perl$exe_ext";
472 my($expinstperl) = "$binexp/$perl$exe_ext";
474 # First make sure $usrbinperl is not already the same as the perl we
476 if (-x $usrbinperl) {
477 # Try to be clever about mainperl being a symbolic link
478 # to binexp/perl if binexp and installbin are different.
479 $mainperl_is_instperl =
480 samepath($usrbinperl, $instperl) ||
481 samepath($usrbinperl, $expinstperl) ||
482 (($binexp ne $installbin) &&
484 ((readlink $usrbinperl) eq $expinstperl));
486 if (! $mainperl_is_instperl) {
488 ( $Config{'d_link'} eq 'define' &&
489 eval { CORE::link $instperl, $usrbinperl } ) ||
490 eval { symlink $expinstperl, $usrbinperl } ||
491 copy($instperl, $usrbinperl);
493 $mainperl_is_instperl = 1;
497 # Make links to ordinary names if installbin directory isn't current directory.
498 if (!$Is_NetWare && $dbg eq '') {
499 if (! samepath($installbin, 'x2p')) {
501 $base .= $ver if $versiononly;
502 safe_unlink("$installbin/$base$exe_ext");
503 copy("x2p/a2p$exe_ext", "$installbin/$base$exe_ext");
504 strip("$installbin/$base$exe_ext");
505 chmod(0755, "$installbin/$base$exe_ext");
509 # cppstdin is just a script, but it is architecture-dependent, so
510 # it can't safely be shared. Place it in $installbin.
511 # Note that Configure doesn't build cppstin if it isn't needed, so
512 # we skip this if cppstdin doesn't exist.
513 if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) {
514 safe_unlink("$installbin/cppstdin");
515 copy("cppstdin", "$installbin/cppstdin");
516 chmod(0755, "$installbin/cppstdin");
520 my ($installscript, $orig, $alias, $scr_ext) = @_;
522 safe_unlink("$installscript/$alias$scr_ext");
523 if ($^O eq 'dos' or $Is_VMS or $^O eq 'transit') {
524 copy("$installscript/$orig$scr_ext",
525 "$installscript/$alias$scr_ext");
526 } elsif ($^O eq 'vos') {
527 symlink("$installscript/$orig$scr_ext",
528 "$installscript/$alias$scr_ext");
530 link("$installscript/$orig$scr_ext",
531 "$installscript/$alias$scr_ext");
536 mkpath($installscript, $opts{verbose}, 0777);
539 (my $base = $_) =~ s#.*/##;
541 copy($_, "$installscript/$base");
542 chmod(0755, "$installscript/$base");
546 my ($from, $to) = map { "$_$ver" } @$_;
547 (my $frbase = $from) =~ s#.*/##;
548 (my $tobase = $to) =~ s#.*/##;
549 script_alias($installscript, $frbase, $tobase, $scr_ext);
553 (my $base = $_) =~ s#.*/##;
554 copy($_, "$installscript/$base");
555 chmod(0755, "$installscript/$base");
559 my ($from, $to) = @$_;
560 (my $frbase = $from) =~ s#.*/##;
561 (my $tobase = $to) =~ s#.*/##;
562 script_alias($installscript, $frbase, $tobase, $scr_ext);
566 # Install pod pages. Where? I guess in $installprivlib/pod
567 # ($installprivlib/pods for cygwin).
569 my $pod = ($Is_Cygwin || $Is_Darwin || $Is_VMS || $Is_W32) ? 'pods' : 'pod';
570 if ( !$versiononly || ($installprivlib =~ m/\Q$vershort/)) {
571 mkpath("${installprivlib}/$pod", $opts{verbose}, 0777);
573 # If Perl 5.003's perldiag.pod is there, rename it.
574 if (open POD, "${installprivlib}/$pod/perldiag.pod") {
577 # Some of Perl 5.003's diagnostic messages ended with periods.
579 my ($from, $to) = ("${installprivlib}/$pod/perldiag.pod",
580 "${installprivlib}/$pod/perldiag-5.003.pod");
581 print " rename $from $to";
583 or warn "Couldn't rename $from to $to: $!\n"
584 unless $opts{notify};
589 # $_ is a name like pod/perl.pod
590 (my $base = $_) =~ s#.*/##;
591 copy_if_diff($_, "${installprivlib}/$pod/${base}");
596 # Check to make sure there aren't other perls around in installer's
597 # path. This is probably UNIX-specific. Check all absolute directories
598 # in the path except for where public executables are supposed to live.
599 # Also skip $mainperl if the user opted to have it be a link to the
602 if (!$versiononly && $otherperls) {
604 my $dirsep = ($Is_OS2 || $Is_W32 || $Is_NetWare) ? ';' : ':' ;
605 ($path = $ENV{"PATH"}) =~ s:\\:/:g ;
606 @path = split(/$dirsep/, $path);
609 while (exists $ENV{'DCL$PATH' . $i}) {
610 my $dir = unixpath($ENV{'DCL$PATH' . $i}); $dir =~ s-/$--;
618 # Use &samepath here because some systems have other dirs linked
619 # to $mainperldir (like SunOS)
620 next if samepath($_, $binexp);
621 next if samepath($_, cwd());
622 next if ($mainperl_is_instperl && samepath($_, $mainperldir));
623 my $otherperl = "$_/$perl$exe_ext";
624 next if $otherperls{$otherperl}++;
625 push(@otherperls, $otherperl)
626 if (-x $otherperl && ! -d $otherperl);
629 warn "\nWarning: $perl appears in your path in the following " .
630 "locations beyond where\nwe just installed it:\n";
639 $packlist->write() unless $opts{notify};
640 print " Installation complete\n" if $opts{verbose};
644 ###############################################################################
646 # If these are needed elsewhere, move them into install_lib.pl rather than
652 my($default) = $prompt =~ m/\[([yn])\]\s*$/i;
653 print STDERR $prompt;
654 chop($answer = <STDIN>);
655 $answer = $default if $answer =~ m/^\s*$/;
656 ($answer =~ m/^[yY]/);
660 return if $opts{notify} or $Is_VMS;
662 foreach my $name (@names) {
663 next unless -e $name;
664 chmod 0777, $name if ($Is_OS2 || $Is_W32 || $Is_NetWare);
665 print " unlink $name\n" if $opts{verbose};
666 next if CORE::unlink($name);
667 warn "Couldn't unlink $name: $!\n";
669 print " mv $name $name.old\n" if $opts{verbose};
670 safe_rename($name, "$name.old")
671 or warn "Couldn't rename $name: $!\n";
678 if (-f $to and not unlink($to)) {
680 for ($i = 1; $i < 50; $i++) {
681 last if rename($to, "$to.$i");
683 warn("Cannot rename to `$to.$i': $!"), return 0
684 if $i >= 50; # Give up!
686 link($from,$to) || return 0;
694 $xto =~ s/^\Q$opts{destdir}\E//;
695 print $opts{verbose} ? " cp $from $xto\n" : " $xto\n"
696 unless $opts{silent};
697 print " creating new version of $xto\n"
698 if $Is_VMS and -e $to and !$opts{silent};
699 unless ($opts{notify} or File::Copy::copy($from, $to)) {
700 # Might have been that F::C::c can't overwrite the target
701 warn "Couldn't copy $from to $to: $!\n"
702 unless -f $to and (chmod(0666, $to), unlink $to)
703 and File::Copy::copy($from, $to);
705 $packlist->{$xto} = { type => 'file' };
709 my $dir = $File::Find::dir;
710 $dir =~ s#^\.(?![^/])/?##;
711 local($depth) = $dir ? "lib/$dir" : "lib";
715 # Ignore version control directories.
716 if ($name =~ /^(?:CVS|RCS|SCCS|\.svn)\z/ and -d $name) {
717 $File::Find::prune = 1;
721 # ignore patch backups, RCS files, emacs backup & temp files and the
722 # .exists files, .PL files, and test files.
723 return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.plc$|\.t$|^test\.pl$|^dbm_filter_util.pl$} ||
724 $dir =~ m{/t(?:/|$)};
725 # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp
726 # scripts in lib/ExtUtils, the prove script in lib/Test/Harness,
727 # the corelist script from lib/Module/CoreList/bin and ptar* in
728 # lib/Archive/Tar/bin, the config_data script in lib/Module/Build/scripts
729 # (they're installed later with other utils)
730 return if $name =~ /^(?:cpan|instmodsh|prove|corelist|ptar|cpan2dist|cpanp|cpanp-run-perl|ptardiff|config_data)\z/;
731 # ignore the Makefiles
732 return if $name =~ /^makefile$/i;
733 # ignore the test extensions
734 return if $dir =~ m{\bXS/(?:APItest|Typemap)\b};
735 return if $name =~ m{\b(?:APItest|Typemap)\.pm$};
736 # ignore the demo files
737 return if $dir =~ /\b(?:demos?|eg)\b/;
739 # ignore READMEs, MANIFESTs, INSTALL docs, META.ymls and change logs.
740 # Changes.e2x and README.e2x are needed by enc2xs.
741 return if $name =~ m{^(?:README(?:\.\w+)?)$} && $name ne 'README.e2x';
742 return if $name =~ m{^(?:MANIFEST|META\.yml)$};
743 return if $name =~ m{^(?:INSTALL|TODO|BUGS|CREDITS)$}i;
744 return if $name =~ m{^change(?:s|log)(?:\.libnet)?$}i;
745 return if $name =~ m{^(?:SIGNATURE|PAUSE200\d\.pub)$}; # CPAN files
746 return if $name =~ m{^(?:NOTES|PATCHING)$}; # ExtUtils files
748 # if using a shared perl library then ignore:
749 # - static library files [of statically linked extensions];
750 # - import library files and export library files (only present on Win32
751 # anyway?) and empty bootstrap files [of dynamically linked extensions].
752 return if $Config{useshrplib} eq 'true' and
753 ($name =~ /$Config{_a}$/ or $name =~ /\.exp$/ or ($name =~ /\.bs$/ and -z $name));
755 $name = "$dir/$name" if $dir ne '';
757 my $installlib = $installprivlib;
758 if ($dir =~ /^auto/ ||
759 ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) ||
760 ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) ||
761 $name eq 'Config_heavy.pl'
763 $installlib = $installarchlib;
764 return unless $do_installarchlib;
766 return unless $do_installprivlib;
770 if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$])) {
771 $installlib = $installprivlib;
772 #We're installing *.al and *.ix files into $installprivlib,
773 #but we have to delete old *.al and *.ix files from the 5.000
775 #This might not work because $archname might have changed.
776 unlink("$installarchlib/$name");
778 my $xname = "$installlib/$name";
779 $xname =~ s/^\Q$opts{destdir}\E//;
780 $packlist->{$xname} = { type => 'file' };
781 if ($force || compare($_, "$installlib/$name") || $opts{notify}) {
782 unlink("$installlib/$name");
783 mkpath("$installlib/$dir", $opts{verbose}, 0777);
784 # HP-UX (at least) needs to maintain execute permissions
785 # on dynamically-loaded libraries.
786 if ($Is_NetWare && !$nwinstall) {
787 # Don't copy .nlp,.nlm files, doesn't make sense on Windows and also
788 # if copied will give problems when building new extensions.
789 # Has to be copied if we are installing on a NetWare server and hence
790 # the check !$nwinstall
791 if (!(/\.(?:nlp|nlm|bs)$/)) {
792 copy_if_diff($_, "$installlib/$name")
793 and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444,
794 "$installlib/$name");
797 if (copy_if_diff($_, "$installlib/$name")) {
798 if ($name =~ /\.(so|$dlext)$/o) {
799 strip("-S", "$installlib/$name") if $^O =~ /^(rhapsody|darwin)$/;
800 chmod(0555, "$installlib/$name");
802 strip("-S", "$installlib/$name")
803 if ($name =~ /\.a$/o and $^O =~ /^(rhapsody|darwin)$/);
804 chmod(0444, "$installlib/$name");
812 # Copy $from to $to, only if $from is different than $to.
813 # Also preserve modification times for .a libraries.
814 # On some systems, if you do
816 # cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a
817 # and then try to link against the installed libperl.a, you might
818 # get an error message to the effect that the symbol table is older
820 # Return true if copying occurred.
824 return 1 if (($^O eq 'VMS') && (-d $from));
826 $xto =~ s/^\Q$opts{destdir}\E//;
827 my $perlpodbadsymlink;
828 if ($from =~ m!^pod/perl[\w-]+\.pod$! &&
831 # Some Linux implementations have problems traversing over
832 # multiple symlinks (when going over NFS?) and fail to read
833 # the symlink target. Combine this with the fact that some
834 # of the pod files (the perl$OS.pod) are symlinks (to ../README.$OS),
835 # and you end up with those pods not getting installed.
836 $perlpodbadsymlink = 1;
838 -f $from || $perlpodbadsymlink || warn "$0: $from not found";
839 $packlist->{$xto} = { type => 'file' };
840 if ($force || compare($from, $to) || $opts{notify}) {
841 safe_unlink($to); # In case we don't have write permissions.
843 $from = $depth . "/" . $from if $depth;
845 if ($perlpodbadsymlink && $from =~ m!^pod/perl(.+)\.pod$!) {
849 # Restore timestamps if it's a .a library or for OS/2.
850 if (!$opts{notify} && ($Is_OS2 || $to =~ /\.a$/)) {
851 my ($atime, $mtime) = (stat $from)[8,9];
852 utime $atime, $mtime, $to;
862 return unless $dostrip;
865 while (@args && $args[0] =~ /^(-\w+)$/) {
866 push @opts, shift @args;
869 foreach my $file (@args) {
871 if ($opts{verbose}) {
872 print " strip " . join(' ', @opts);
873 print " " if (@opts);
876 system("strip", @opts, $file);
878 print "# file '$file' skipped\n" if $opts{verbose};