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