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