This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [PATCH 5.00552] Overloaded <> and deref again
[perl5.git] / installperl
CommitLineData
c623bd54 1#!./perl
68dc0745 2
3BEGIN {
c90c0ff4 4 require 5.004;
d07c2202 5 chdir '..' if !-d 'lib' and -d '..\lib';
68dc0745 6 @INC = 'lib';
7 $ENV{PERL5LIB} = 'lib';
a29d2910
A
8}
9
10use strict;
11use vars qw($Is_VMS $Is_W32 $Is_OS2 $nonono $versiononly $depth);
12
13BEGIN {
17f28c40 14 $Is_VMS = $^O eq 'VMS';
4a71ed0c
GS
15 $Is_W32 = $^O eq 'MSWin32';
16 $Is_OS2 = $^O eq 'os2';
17f28c40 17 if ($Is_VMS) { eval 'use VMS::Filespec;' }
68dc0745 18}
19
c2cd2081 20my $scr_ext = ($Is_VMS ? '.Com' : $Is_W32 ? '.bat' : '');
4a71ed0c 21
a0d0e21e 22use File::Find;
5f05dabc 23use File::Compare;
68dc0745 24use File::Copy ();
0ecb046b 25use File::Path ();
354f3b56 26use ExtUtils::Packlist;
4633a7c4 27use Config;
91a06757 28use subs qw(unlink link chmod);
354f3b56 29use vars qw($packlist);
c623bd54 30
0ecb046b 31# override the ones in the rest of the script
68dc0745 32sub mkpath {
33 File::Path::mkpath(@_) unless $nonono;
0ecb046b
SH
34}
35
c2cd2081
KS
36my $mainperldir = "/usr/bin";
37my $exe_ext = $Config{exe_ext};
bee1dbe2 38
6ee623d5 39# Allow ``make install PERLNAME=something_besides_perl'':
c2cd2081 40my $perl = defined($ENV{PERLNAME}) ? $ENV{PERLNAME} : 'perl';
6ee623d5 41
c623bd54
LW
42while (@ARGV) {
43 $nonono = 1 if $ARGV[0] eq '-n';
44 $versiononly = 1 if $ARGV[0] eq '-v';
45 shift;
46}
47
17f28c40 48umask 022 unless $Is_VMS;
45d8adaa 49
c2cd2081 50my @scripts = qw(utils/c2ph utils/h2ph utils/h2xs utils/perlbug utils/perldoc
4a71ed0c 51 utils/pl2pm utils/splain utils/perlcc
6ee623d5 52 x2p/s2p x2p/find2perl
dd6decf0 53 pod/pod2man pod/pod2html pod/pod2latex pod/pod2text);
16d20bd9 54
4a71ed0c 55if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; }
17f28c40 56
c2cd2081 57my @pods = (<pod/*.pod>);
c623bd54 58
e8ea6127
AD
59# Specify here any .pm files that are actually architecture-dependent.
60# (Those included with XS extensions under ext/ are automatically
61# added later.)
62# Now that the default privlib has the full perl version number included,
63# we no longer have to play the trick of sticking version-specific .pm
64# files under the archlib directory.
c2cd2081 65my %archpms = (
e8ea6127 66 Config => 1,
38b8243a 67);
39e571d4
LM
68
69if ($^O eq 'dos') {
70 push(@scripts,'djgpp/fixpmain');
71 $archpms{config} = $archpms{filehand} = 1;
72}
73
6ee623d5
GS
74if ((-e "testcompile") && (defined($ENV{'COMPILE'})))
75{
76 push(@scripts, map("$_.exe", @scripts));
77}
78
1dd15ed4
CS
79find(sub {
80 if ("$File::Find::dir/$_" =~ m{^ext/[^/]+/(.*)\.pm$}) {
81 (my $pm = $1) =~ s{^lib/}{};
82 $archpms{$pm} = 1;
83 }
84 }, 'ext');
85
c2cd2081
KS
86my $ver = $];
87my $release = substr($ver,0,3); # Not used presently.
88my $patchlevel = substr($ver,3,2);
748a9306 89die "Patchlevel of perl ($patchlevel)",
4633a7c4
LW
90 "and patchlevel of config.sh ($Config{'PATCHLEVEL'}) don't match\n"
91 if $patchlevel != $Config{'PATCHLEVEL'};
92
93# Fetch some frequently-used items from %Config
c2cd2081
KS
94my $installbin = $Config{installbin};
95my $installscript = $Config{installscript};
96my $installprivlib = $Config{installprivlib};
97my $installarchlib = $Config{installarchlib};
98my $installsitelib = $Config{installsitelib};
99my $installsitearch = $Config{installsitearch};
100my $installman1dir = $Config{installman1dir};
101my $man1ext = $Config{man1ext};
102my $libperl = $Config{libperl};
4633a7c4 103# Shared library and dynamic loading suffixes.
c2cd2081
KS
104my $so = $Config{so};
105my $dlext = $Config{dlext};
4633a7c4 106
c2cd2081
KS
107my $d_dosuid = $Config{d_dosuid};
108my $binexp = $Config{binexp};
c623bd54 109
17f28c40
CB
110if ($Is_VMS) { # Hang in there until File::Spec hits the big time
111 foreach ( \$installbin, \$installscript, \$installprivlib,
112 \$installarchlib, \$installsitelib, \$installsitearch,
113 \$installman1dir ) {
114 $$_ = unixify($$_); $$_ =~ s:/$::;
115 }
116}
117
c623bd54
LW
118# Do some quick sanity checks.
119
120if ($d_dosuid && $>) { die "You must run as root to install suidperl\n"; }
121
fe14fcc3 122 $installbin || die "No installbin directory in config.sh\n";
fcbdbaa8 123-d $installbin || mkpath($installbin, 1, 0777);
0ecb046b
SH
124-d $installbin || $nonono || die "$installbin is not a directory\n";
125-w $installbin || $nonono || die "$installbin is not writable by you\n"
3edbfbe5 126 unless $installbin =~ m#^/afs/# || $nonono;
c623bd54 127
39add537 128-x 'perl' . $exe_ext || die "perl isn't executable!\n";
129-x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid;
c623bd54 130
4a71ed0c 131-x 't/TEST' || $Is_W32
d07c2202
GS
132 || warn "WARNING: You've never run 'make test'!!!",
133 " (Installing anyway.)\n";
c623bd54 134
4a71ed0c 135if ($Is_W32) {
eef1cf2a 136
c2cd2081 137my $perldll = 'perl.' . $dlext;
f7a92b15
DL
138$perldll = 'perlcore.' . $dlext if $Config{'ccflags'} =~ /PERL_OBJECT/i;
139
140-f $perldll || die "No perl DLL built\n";
eef1cf2a
GS
141
142# Install the DLL
143
f7a92b15
DL
144safe_unlink("$installbin/$perldll");
145copy("$perldll", "$installbin/$perldll");
146chmod(0755, "$installbin/$perldll");
eef1cf2a
GS
147}
148
354f3b56 149# This will be used to store the packlist
c2cd2081 150my $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist");
354f3b56 151
c623bd54
LW
152# First we install the version-numbered executables.
153
17f28c40 154if ($Is_VMS) {
6ee623d5
GS
155 safe_unlink("$installbin/$perl$exe_ext");
156 copy("perl$exe_ext", "$installbin/$perl$exe_ext");
157 chmod(0755, "$installbin/$perl$exe_ext");
158 safe_unlink("$installbin/${perl}shr$exe_ext");
159 copy("perlshr$exe_ext", "$installbin/${perl}shr$exe_ext");
160 chmod(0755, "$installbin/${perl}shr$exe_ext");
17f28c40 161}
1d84e8df
JH
162elsif ($^O eq 'mpeix') {
163 # MPE lacks hard links and requires that executables with special
164 # capabilities reside in the MPE namespace.
165 safe_unlink("$installbin/perl$ver$exe_ext", $Config{perlpath});
166 # Install the primary executable into the MPE namespace as perlpath.
167 copy("perl$exe_ext", $Config{perlpath});
168 chmod(0755, $Config{perlpath});
169 # Create a backup copy with the version number.
170 link($Config{perlpath}, "$installbin/perl$ver$exe_ext");
171}
3f5ee302
JH
172elsif ($^O ne 'dos') {
173 safe_unlink("$installbin/$perl$ver$exe_ext");
174 copy("perl$exe_ext", "$installbin/$perl$ver$exe_ext");
175 chmod(0755, "$installbin/$perl$ver$exe_ext");
176}
1d84e8df 177else {
6ee623d5
GS
178 safe_unlink("$installbin/$perl.exe");
179 copy("perl.exe", "$installbin/$perl.exe");
39e571d4 180}
c623bd54 181
6ee623d5 182safe_unlink("$installbin/s$perl$ver$exe_ext");
c623bd54 183if ($d_dosuid) {
6ee623d5
GS
184 copy("suidperl$exe_ext", "$installbin/s$perl$ver$exe_ext");
185 chmod(04711, "$installbin/s$perl$ver$exe_ext");
c623bd54
LW
186}
187
45d8adaa
LW
188# Install library files.
189
c2cd2081 190my ($do_installarchlib, $do_installprivlib) = (0, 0);
a0d0e21e 191
fcbdbaa8 192mkpath($installprivlib, 1, 0777);
193mkpath($installarchlib, 1, 0777);
194mkpath($installsitelib, 1, 0777) if ($installsitelib);
195mkpath($installsitearch, 1, 0777) if ($installsitearch);
4633a7c4 196
45d8adaa 197if (chdir "lib") {
68dc0745 198 $do_installarchlib = ! samepath($installarchlib, '.');
199 $do_installprivlib = ! samepath($installprivlib, '.');
b971f6e4 200 $do_installprivlib = 0 if $versiononly && !($installprivlib =~ m/\Q$]/);
45d8adaa 201
a0d0e21e
LW
202 if ($do_installarchlib || $do_installprivlib) {
203 find(\&installlib, '.');
45d8adaa
LW
204 }
205 chdir ".." || die "Can't cd back to source directory: $!\n";
206}
207else {
208 warn "Can't cd to lib to install lib files: $!\n";
209}
210
1aef975c 211# Install header files and libraries.
fcbdbaa8 212mkpath("$installarchlib/CORE", 1, 0777);
c2cd2081 213my @corefiles;
17f28c40
CB
214if ($Is_VMS) { # We did core file selection during build
215 my $coredir = "lib/$Config{'arch'}/$]";
216 $coredir =~ tr/./_/;
217 @corefiles = <$coredir/*.*>;
218}
219else {
220 @corefiles = <*.h libperl*.*>;
221 # AIX needs perl.exp installed as well.
222 push(@corefiles,'perl.exp') if $^O eq 'aix';
223 # If they have built sperl.o...
224 push(@corefiles,'sperl.o') if -f 'sperl.o';
225}
c2cd2081 226foreach my $file (@corefiles) {
aa3cf465 227 # HP-UX (at least) needs to maintain execute permissions
efc5ad56 228 # on dynamically-loadable libraries. So we do it for all.
68dc0745 229 copy_if_diff($file,"$installarchlib/CORE/$file")
efc5ad56 230 and chmod($file =~ /\.(so|\Q$dlext\E)$/ ? 0555 : 0444,
aa3cf465 231 "$installarchlib/CORE/$file");
340f689c 232}
3edbfbe5 233
156620fa
NA
234# Install main perl executables
235# Make links to ordinary names if installbin directory isn't current directory.
236
17f28c40 237if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS) {
6ee623d5 238 safe_unlink("$installbin/$perl$exe_ext", "$installbin/suid$perl$exe_ext");
1d84e8df
JH
239 if ($^O eq 'mpeix') {
240 # MPE doesn't support hard links, so use a symlink.
241 # We don't want another cloned copy.
242 symlink($Config{perlpath}, "$installbin/perl$exe_ext");
243 } else {
244 link("$installbin/$perl$ver$exe_ext", "$installbin/$perl$exe_ext");
245 }
6ee623d5 246 link("$installbin/s$perl$ver$exe_ext", "$installbin/suid$perl$exe_ext")
156620fa
NA
247 if $d_dosuid;
248}
249
a0d0e21e
LW
250# Offer to install perl in a "standard" location
251
c2cd2081 252my $mainperl_is_instperl = 0;
a0d0e21e 253
4a71ed0c 254if (!$versiononly && !$nonono && !$Is_W32 && !$Is_VMS && -t STDIN && -t STDERR
68dc0745 255 && -w $mainperldir && ! samepath($mainperldir, $installbin)) {
c2cd2081
KS
256 my($usrbinperl) = "$mainperldir/$perl$exe_ext";
257 my($instperl) = "$installbin/$perl$exe_ext";
258 my($expinstperl) = "$binexp/$perl$exe_ext";
55497cff 259
260 # First make sure $usrbinperl is not already the same as the perl we
261 # just installed.
262 if (-x $usrbinperl) {
a0d0e21e
LW
263 # Try to be clever about mainperl being a symbolic link
264 # to binexp/perl if binexp and installbin are different.
265 $mainperl_is_instperl =
68dc0745 266 samepath($usrbinperl, $instperl) ||
267 samepath($usrbinperl, $expinstperl) ||
a0d0e21e 268 (($binexp ne $installbin) &&
55497cff 269 (-l $usrbinperl) &&
270 ((readlink $usrbinperl) eq $expinstperl));
a0d0e21e
LW
271 }
272 if ((! $mainperl_is_instperl) &&
68dc0745 273 (yn("Many scripts expect perl to be installed as $usrbinperl.\n" .
55497cff 274 "Do you wish to have $usrbinperl be the same as\n" .
275 "$expinstperl? [y] ")))
1d84e8df 276 {
55497cff 277 unlink($usrbinperl);
1d84e8df
JH
278 ( $Config{'d_link'} eq 'define' &&
279 eval { CORE::link $instperl, $usrbinperl } ) ||
280 eval { symlink $expinstperl, $usrbinperl } ||
281 copy($instperl, $usrbinperl);
282
a0d0e21e
LW
283 $mainperl_is_instperl = 1;
284 }
285}
286
b971f6e4 287# Make links to ordinary names if installbin directory isn't current directory.
288
68dc0745 289if (!$versiononly && ! samepath($installbin, 'x2p')) {
290 safe_unlink("$installbin/a2p$exe_ext");
291 copy("x2p/a2p$exe_ext", "$installbin/a2p$exe_ext");
292 chmod(0755, "$installbin/a2p$exe_ext");
b971f6e4 293}
294
295# cppstdin is just a script, but it is architecture-dependent, so
296# it can't safely be shared. Place it in $installbin.
297# Note that Configure doesn't build cppstin if it isn't needed, so
298# we skip this if cppstdin doesn't exist.
68dc0745 299if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) {
300 safe_unlink("$installbin/cppstdin");
301 copy("cppstdin", "$installbin/cppstdin");
302 chmod(0755, "$installbin/cppstdin");
b971f6e4 303}
304
305# Install scripts.
306
307mkpath($installscript, 1, 0777);
308
309if (! $versiononly) {
310 for (@scripts) {
68dc0745 311 (my $base = $_) =~ s#.*/##;
312 copy($_, "$installscript/$base");
313 chmod(0755, "$installscript/$base");
b971f6e4 314 }
315}
316
317# pstruct should be a link to c2ph
318
319if (! $versiononly) {
4a71ed0c 320 safe_unlink("$installscript/pstruct$scr_ext");
17f28c40 321 if ($^O eq 'dos' or $Is_VMS) {
4a71ed0c 322 copy("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext");
39e571d4 323 } else {
4a71ed0c 324 link("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext");
39e571d4 325 }
b971f6e4 326}
327
328# Install pod pages. Where? I guess in $installprivlib/pod.
329
68dc0745 330if (! $versiononly || !($installprivlib =~ m/\Q$]/)) {
b971f6e4 331 mkpath("${installprivlib}/pod", 1, 0777);
91a06757
CS
332
333 # If Perl 5.003's perldiag.pod is there, rename it.
334 if (open POD, "${installprivlib}/pod/perldiag.pod") {
335 read POD, $_, 4000;
336 close POD;
337 # Some of Perl 5.003's diagnostic messages ended with periods.
338 if (/^=.*\.$/m) {
339 my ($from, $to) = ("${installprivlib}/pod/perldiag.pod",
340 "${installprivlib}/pod/perldiag-5.003.pod");
341 print STDERR " rename $from $to";
342 rename($from, $to)
343 or warn "Couldn't rename $from to $to: $!\n"
344 unless $nonono;
345 }
346 }
347
c2cd2081 348 foreach my $file (@pods) {
b971f6e4 349 # $file is a name like pod/perl.pod
68dc0745 350 copy_if_diff($file, "${installprivlib}/${file}");
b971f6e4 351 }
91a06757 352
b971f6e4 353}
354
a0d0e21e
LW
355# Check to make sure there aren't other perls around in installer's
356# path. This is probably UNIX-specific. Check all absolute directories
357# in the path except for where public executables are supposed to live.
358# Also skip $mainperl if the user opted to have it be a link to the
359# installed perl.
360
b971f6e4 361if (!$versiononly) {
c2cd2081
KS
362 my ($path, @path);
363 my $dirsep = ($Is_OS2 || $Is_W32) ? ';' : ':' ;
b971f6e4 364 ($path = $ENV{"PATH"}) =~ s:\\:/:g ;
365 @path = split(/$dirsep/, $path);
17f28c40
CB
366 if ($Is_VMS) {
367 my $i = 0;
368 while (exists $ENV{'DCL$PATH' . $i}) {
c2cd2081 369 my $dir = unixpath($ENV{'DCL$PATH' . $i}); $dir =~ s-/$--;
17f28c40
CB
370 push(@path,$dir);
371 }
372 }
c2cd2081 373 my @otherperls;
b971f6e4 374 for (@path) {
375 next unless m,^/,;
376 # Use &samepath here because some systems have other dirs linked
377 # to $mainperldir (like SunOS)
68dc0745 378 next if samepath($_, $binexp);
379 next if ($mainperl_is_instperl && samepath($_, $mainperldir));
6ee623d5
GS
380 push(@otherperls, "$_/$perl$exe_ext")
381 if (-x "$_/$perl$exe_ext" && ! -d "$_/$perl$exe_ext");
b971f6e4 382 }
383 if (@otherperls) {
6ee623d5 384 print STDERR "\nWarning: $perl appears in your path in the following " .
b971f6e4 385 "locations beyond where\nwe just installed it:\n";
386 for (@otherperls) {
387 print STDERR " ", $_, "\n";
388 }
389 print STDERR "\n";
a0d0e21e 390 }
b971f6e4 391
a0d0e21e
LW
392}
393
3f9aafa0 394$packlist->write() unless $nonono;
c623bd54
LW
395print STDERR " Installation complete\n";
396
397exit 0;
398
399###############################################################################
400
a0d0e21e 401sub yn {
c2cd2081
KS
402 my($prompt) = @_;
403 my($answer);
404 my($default) = $prompt =~ m/\[([yn])\]\s*$/i;
a0d0e21e
LW
405 print STDERR $prompt;
406 chop($answer = <STDIN>);
407 $answer = $default if $answer =~ m/^\s*$/;
408 ($answer =~ m/^[yY]/);
409}
410
c623bd54 411sub unlink {
c2cd2081 412 my(@names) = @_;
39add537 413 my($cnt) = 0;
c623bd54 414
17f28c40
CB
415 return scalar(@names) if $Is_VMS;
416
c2cd2081 417 foreach my $name (@names) {
c623bd54 418 next unless -e $name;
4a71ed0c 419 chmod 0777, $name if ($Is_OS2 || $Is_W32);
c623bd54 420 print STDERR " unlink $name\n";
39add537 421 ( CORE::unlink($name) and ++$cnt
422 or warn "Couldn't unlink $name: $!\n" ) unless $nonono;
c623bd54 423 }
39add537 424 return $cnt;
c623bd54
LW
425}
426
e50aee73 427sub safe_unlink {
17f28c40 428 return if $nonono or $Is_VMS;
c2cd2081
KS
429 my @names = @_;
430 foreach my $name (@names) {
e50aee73 431 next unless -e $name;
4a71ed0c 432 chmod 0777, $name if ($Is_OS2 || $Is_W32);
39add537 433 print STDERR " unlink $name\n";
434 next if CORE::unlink($name);
e50aee73
AD
435 warn "Couldn't unlink $name: $!\n";
436 if ($! =~ /busy/i) {
437 print STDERR " mv $name $name.old\n";
68dc0745 438 safe_rename($name, "$name.old")
439 or warn "Couldn't rename $name: $!\n";
e50aee73
AD
440 }
441 }
442}
443
68dc0745 444sub safe_rename {
c2cd2081 445 my($from,$to) = @_;
39add537 446 if (-f $to and not unlink($to)) {
e50aee73
AD
447 my($i);
448 for ($i = 1; $i < 50; $i++) {
91a06757 449 last if rename($to, "$to.$i");
e50aee73 450 }
39add537 451 warn("Cannot rename to `$to.$i': $!"), return 0
452 if $i >= 50; # Give up!
e50aee73
AD
453 }
454 link($from,$to) || return 0;
455 unlink($from);
456}
457
c623bd54 458sub link {
15792f64 459 my($from,$to) = @_;
460 my($success) = 0;
c623bd54
LW
461
462 print STDERR " ln $from $to\n";
39add537 463 eval {
68dc0745 464 CORE::link($from, $to)
465 ? $success++
7bac28a0 466 : ($from =~ m#^/afs/# || $to =~ m#^/afs/#)
467 ? die "AFS" # okay inside eval {}
468 : warn "Couldn't link $from to $to: $!\n"
68dc0745 469 unless $nonono;
354f3b56 470 $packlist->{$to} = { from => $from, type => 'link' };
39add537 471 };
472 if ($@) {
17f28c40 473 print STDERR " creating new version of $to\n" if $Is_VMS and -e $to;
68dc0745 474 File::Copy::copy($from, $to)
475 ? $success++
476 : warn "Couldn't copy $from to $to: $!\n"
477 unless $nonono;
354f3b56 478 $packlist->{$to} = { type => 'file' };
39add537 479 }
15792f64 480 $success;
c623bd54
LW
481}
482
483sub chmod {
c2cd2081 484 my($mode,$name) = @_;
c623bd54 485
39e571d4 486 return if ($^O eq 'dos');
c623bd54 487 printf STDERR " chmod %o %s\n", $mode, $name;
68dc0745 488 CORE::chmod($mode,$name)
489 || warn sprintf("Couldn't chmod %o %s: $!\n", $mode, $name)
490 unless $nonono;
491}
492
493sub copy {
494 my($from,$to) = @_;
495
496 print STDERR " cp $from $to\n";
17f28c40 497 print STDERR " creating new version of $to\n" if $Is_VMS and -e $to;
68dc0745 498 File::Copy::copy($from, $to)
499 || warn "Couldn't copy $from to $to: $!\n"
500 unless $nonono;
354f3b56 501 $packlist->{$to} = { type => 'file' };
c623bd54
LW
502}
503
a0d0e21e 504sub samepath {
c2cd2081 505 my($p1, $p2) = @_;
eef1cf2a 506
4a71ed0c 507 return (lc($p1) eq lc($p2)) if $Is_W32;
a0d0e21e 508
75f92628 509 if ($p1 ne $p2) {
c2cd2081 510 my($dev1, $ino1, $dev2, $ino2);
a0d0e21e
LW
511 ($dev1, $ino1) = stat($p1);
512 ($dev2, $ino2) = stat($p2);
513 ($dev1 == $dev2 && $ino1 == $ino2);
514 }
515 else {
516 1;
517 }
518}
519
520sub installlib {
521 my $dir = $File::Find::dir;
522 $dir =~ s#^\.(?![^/])/?##;
0ecb046b 523 local($depth) = $dir ? "lib/$dir" : "lib";
a0d0e21e
LW
524
525 my $name = $_;
efc5ad56
TB
526
527 if ($name eq 'CVS' && -d $name) {
528 $File::Find::prune = 1;
529 return;
530 }
e50aee73
AD
531
532 # ignore patch backups and the .exists files.
533 return if $name =~ m{\.orig$|~$|^\.exists};
534
a0d0e21e
LW
535 $name = "$dir/$name" if $dir ne '';
536
537 my $installlib = $installprivlib;
1dd15ed4 538 if ($dir =~ /^auto/ ||
eef1cf2a 539 ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) ||
4a71ed0c 540 ($name =~ /^(.*)\.(?:h|lib)$/i && $Is_W32)
eef1cf2a 541 ) {
a0d0e21e
LW
542 $installlib = $installarchlib;
543 return unless $do_installarchlib;
544 } else {
545 return unless $do_installprivlib;
546 }
547
a0d0e21e 548 if (-f $_) {
5cc330c8 549 if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) {
3edbfbe5
TB
550 $installlib = $installprivlib;
551 #We're installing *.al and *.ix files into $installprivlib,
552 #but we have to delete old *.al and *.ix files from the 5.000
553 #distribution:
75f92628 554 #This might not work because $archname might have changed.
68dc0745 555 unlink("$installarchlib/$name");
3edbfbe5 556 }
354f3b56 557 $packlist->{"$installlib/$name"} = { type => 'file' };
5f05dabc 558 if (compare($_, "$installlib/$name") || $nonono) {
68dc0745 559 unlink("$installlib/$name");
fcbdbaa8 560 mkpath("$installlib/$dir", 1, 0777);
75f92628
AD
561 # HP-UX (at least) needs to maintain execute permissions
562 # on dynamically-loaded libraries.
68dc0745 563 copy_if_diff($_, "$installlib/$name")
564 and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444,
aa3cf465 565 "$installlib/$name");
a0d0e21e 566 }
a0d0e21e
LW
567 }
568}
3edbfbe5 569
16d20bd9
AD
570# Copy $from to $to, only if $from is different than $to.
571# Also preserve modification times for .a libraries.
572# On some systems, if you do
573# ranlib libperl.a
574# cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a
575# and then try to link against the installed libperl.a, you might
576# get an error message to the effect that the symbol table is older
577# than the library.
aa3cf465 578# Return true if copying occurred.
68dc0745 579
580sub copy_if_diff {
3edbfbe5 581 my($from,$to)=@_;
8530e788 582 return 1 if (($^O eq 'VMS') && (-d $from));
3edbfbe5 583 -f $from || die "$0: $from not found";
354f3b56 584 $packlist->{$to} = { type => 'file' };
5f05dabc 585 if (compare($from, $to) || $nonono) {
68dc0745 586 safe_unlink($to); # In case we don't have write permissions.
0ecb046b
SH
587 if ($nonono) {
588 $from = $depth . "/" . $from if $depth;
589 }
68dc0745 590 copy($from, $to);
591 # Restore timestamps if it's a .a library or for OS/2.
4a71ed0c 592 if (!$nonono && ($Is_OS2 || $to =~ /\.a$/)) {
68dc0745 593 my ($atime, $mtime) = (stat $from)[8,9];
16d20bd9
AD
594 utime $atime, $mtime, $to;
595 }
aa3cf465 596 1;
3edbfbe5
TB
597 }
598}