5.005_03-MAINT_TRIAL_5 utils/h2xs fixing -A & more
[p5sagit/p5-mst-13.2.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 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 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 34}
35
c2cd2081 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 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 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 68
69if ($^O eq 'dos') {
70 push(@scripts,'djgpp/fixpmain');
71 $archpms{config} = $archpms{filehand} = 1;
72}
73
6ee623d5 74if ((-e "testcompile") && (defined($ENV{'COMPILE'})))
75{
76 push(@scripts, map("$_.exe", @scripts));
77}
78
1dd15ed4 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 86my $ver = $];
87my $release = substr($ver,0,3); # Not used presently.
88my $patchlevel = substr($ver,3,2);
748a9306 89die "Patchlevel of perl ($patchlevel)",
4633a7c4 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 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 104my $so = $Config{so};
105my $dlext = $Config{dlext};
4633a7c4 106
c2cd2081 107my $d_dosuid = $Config{d_dosuid};
108my $binexp = $Config{binexp};
c623bd54 109
17f28c40 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 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 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 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 138$perldll = 'perlcore.' . $dlext if $Config{'ccflags'} =~ /PERL_OBJECT/i;
139
140-f $perldll || die "No perl DLL built\n";
eef1cf2a 141
142# Install the DLL
143
f7a92b15 144safe_unlink("$installbin/$perldll");
145copy("$perldll", "$installbin/$perldll");
146chmod(0755, "$installbin/$perldll");
eef1cf2a 147}
148
354f3b56 149# This will be used to store the packlist
c2cd2081 150my $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist");
354f3b56 151
c623bd54 152# First we install the version-numbered executables.
153
17f28c40 154if ($Is_VMS) {
6ee623d5 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 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 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 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 184 copy("suidperl$exe_ext", "$installbin/s$perl$ver$exe_ext");
185 chmod(04711, "$installbin/s$perl$ver$exe_ext");
c623bd54 186}
187
45d8adaa 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 202 if ($do_installarchlib || $do_installprivlib) {
203 find(\&installlib, '.');
45d8adaa 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 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';
9d7f10f2 223 if ($^O eq 'mpeix') {
224 # MPE needs mpeixish.h installed as well.
225 mkpath("$installarchlib/CORE/mpeix", 1, 0777);
226 push(@corefiles,'mpeix/mpeixish.h');
227 }
17f28c40 228 # If they have built sperl.o...
229 push(@corefiles,'sperl.o') if -f 'sperl.o';
230}
c2cd2081 231foreach my $file (@corefiles) {
aa3cf465 232 # HP-UX (at least) needs to maintain execute permissions
efc5ad56 233 # on dynamically-loadable libraries. So we do it for all.
68dc0745 234 copy_if_diff($file,"$installarchlib/CORE/$file")
efc5ad56 235 and chmod($file =~ /\.(so|\Q$dlext\E)$/ ? 0555 : 0444,
aa3cf465 236 "$installarchlib/CORE/$file");
340f689c 237}
3edbfbe5 238
156620fa 239# Install main perl executables
240# Make links to ordinary names if installbin directory isn't current directory.
241
17f28c40 242if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS) {
6ee623d5 243 safe_unlink("$installbin/$perl$exe_ext", "$installbin/suid$perl$exe_ext");
1d84e8df 244 if ($^O eq 'mpeix') {
245 # MPE doesn't support hard links, so use a symlink.
246 # We don't want another cloned copy.
247 symlink($Config{perlpath}, "$installbin/perl$exe_ext");
248 } else {
249 link("$installbin/$perl$ver$exe_ext", "$installbin/$perl$exe_ext");
250 }
6ee623d5 251 link("$installbin/s$perl$ver$exe_ext", "$installbin/suid$perl$exe_ext")
156620fa 252 if $d_dosuid;
253}
254
a0d0e21e 255# Offer to install perl in a "standard" location
256
c2cd2081 257my $mainperl_is_instperl = 0;
a0d0e21e 258
472a4973 259if ($Config{installusrbinperl} eq 'define' &&
260 !$versiononly && !$nonono && !$Is_W32 && !$Is_VMS && -t STDIN && -t STDERR
68dc0745 261 && -w $mainperldir && ! samepath($mainperldir, $installbin)) {
c2cd2081 262 my($usrbinperl) = "$mainperldir/$perl$exe_ext";
263 my($instperl) = "$installbin/$perl$exe_ext";
264 my($expinstperl) = "$binexp/$perl$exe_ext";
55497cff 265
266 # First make sure $usrbinperl is not already the same as the perl we
267 # just installed.
268 if (-x $usrbinperl) {
a0d0e21e 269 # Try to be clever about mainperl being a symbolic link
270 # to binexp/perl if binexp and installbin are different.
271 $mainperl_is_instperl =
68dc0745 272 samepath($usrbinperl, $instperl) ||
273 samepath($usrbinperl, $expinstperl) ||
a0d0e21e 274 (($binexp ne $installbin) &&
55497cff 275 (-l $usrbinperl) &&
276 ((readlink $usrbinperl) eq $expinstperl));
a0d0e21e 277 }
278 if ((! $mainperl_is_instperl) &&
68dc0745 279 (yn("Many scripts expect perl to be installed as $usrbinperl.\n" .
55497cff 280 "Do you wish to have $usrbinperl be the same as\n" .
281 "$expinstperl? [y] ")))
1d84e8df 282 {
55497cff 283 unlink($usrbinperl);
1d84e8df 284 ( $Config{'d_link'} eq 'define' &&
285 eval { CORE::link $instperl, $usrbinperl } ) ||
286 eval { symlink $expinstperl, $usrbinperl } ||
287 copy($instperl, $usrbinperl);
288
a0d0e21e 289 $mainperl_is_instperl = 1;
290 }
291}
292
b971f6e4 293# Make links to ordinary names if installbin directory isn't current directory.
294
68dc0745 295if (!$versiononly && ! samepath($installbin, 'x2p')) {
296 safe_unlink("$installbin/a2p$exe_ext");
297 copy("x2p/a2p$exe_ext", "$installbin/a2p$exe_ext");
298 chmod(0755, "$installbin/a2p$exe_ext");
b971f6e4 299}
300
301# cppstdin is just a script, but it is architecture-dependent, so
302# it can't safely be shared. Place it in $installbin.
303# Note that Configure doesn't build cppstin if it isn't needed, so
304# we skip this if cppstdin doesn't exist.
68dc0745 305if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) {
306 safe_unlink("$installbin/cppstdin");
307 copy("cppstdin", "$installbin/cppstdin");
308 chmod(0755, "$installbin/cppstdin");
b971f6e4 309}
310
311# Install scripts.
312
313mkpath($installscript, 1, 0777);
314
315if (! $versiononly) {
316 for (@scripts) {
68dc0745 317 (my $base = $_) =~ s#.*/##;
318 copy($_, "$installscript/$base");
319 chmod(0755, "$installscript/$base");
b971f6e4 320 }
321}
322
323# pstruct should be a link to c2ph
324
325if (! $versiononly) {
4a71ed0c 326 safe_unlink("$installscript/pstruct$scr_ext");
17f28c40 327 if ($^O eq 'dos' or $Is_VMS) {
4a71ed0c 328 copy("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext");
39e571d4 329 } else {
4a71ed0c 330 link("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext");
39e571d4 331 }
b971f6e4 332}
333
334# Install pod pages. Where? I guess in $installprivlib/pod.
335
7dda0d2d 336unless ( $versiononly && !($installprivlib =~ m/\Q$]/)) {
b971f6e4 337 mkpath("${installprivlib}/pod", 1, 0777);
91a06757 338
339 # If Perl 5.003's perldiag.pod is there, rename it.
340 if (open POD, "${installprivlib}/pod/perldiag.pod") {
341 read POD, $_, 4000;
342 close POD;
343 # Some of Perl 5.003's diagnostic messages ended with periods.
344 if (/^=.*\.$/m) {
345 my ($from, $to) = ("${installprivlib}/pod/perldiag.pod",
346 "${installprivlib}/pod/perldiag-5.003.pod");
347 print STDERR " rename $from $to";
348 rename($from, $to)
349 or warn "Couldn't rename $from to $to: $!\n"
350 unless $nonono;
351 }
352 }
353
c2cd2081 354 foreach my $file (@pods) {
b971f6e4 355 # $file is a name like pod/perl.pod
68dc0745 356 copy_if_diff($file, "${installprivlib}/${file}");
b971f6e4 357 }
91a06757 358
b971f6e4 359}
360
a0d0e21e 361# Check to make sure there aren't other perls around in installer's
362# path. This is probably UNIX-specific. Check all absolute directories
363# in the path except for where public executables are supposed to live.
364# Also skip $mainperl if the user opted to have it be a link to the
365# installed perl.
366
b971f6e4 367if (!$versiononly) {
c2cd2081 368 my ($path, @path);
369 my $dirsep = ($Is_OS2 || $Is_W32) ? ';' : ':' ;
b971f6e4 370 ($path = $ENV{"PATH"}) =~ s:\\:/:g ;
371 @path = split(/$dirsep/, $path);
17f28c40 372 if ($Is_VMS) {
373 my $i = 0;
374 while (exists $ENV{'DCL$PATH' . $i}) {
c2cd2081 375 my $dir = unixpath($ENV{'DCL$PATH' . $i}); $dir =~ s-/$--;
17f28c40 376 push(@path,$dir);
377 }
378 }
c2cd2081 379 my @otherperls;
b971f6e4 380 for (@path) {
381 next unless m,^/,;
382 # Use &samepath here because some systems have other dirs linked
383 # to $mainperldir (like SunOS)
68dc0745 384 next if samepath($_, $binexp);
385 next if ($mainperl_is_instperl && samepath($_, $mainperldir));
6ee623d5 386 push(@otherperls, "$_/$perl$exe_ext")
387 if (-x "$_/$perl$exe_ext" && ! -d "$_/$perl$exe_ext");
b971f6e4 388 }
389 if (@otherperls) {
6ee623d5 390 print STDERR "\nWarning: $perl appears in your path in the following " .
b971f6e4 391 "locations beyond where\nwe just installed it:\n";
392 for (@otherperls) {
393 print STDERR " ", $_, "\n";
394 }
395 print STDERR "\n";
a0d0e21e 396 }
b971f6e4 397
a0d0e21e 398}
399
3f9aafa0 400$packlist->write() unless $nonono;
c623bd54 401print STDERR " Installation complete\n";
402
403exit 0;
404
405###############################################################################
406
a0d0e21e 407sub yn {
c2cd2081 408 my($prompt) = @_;
409 my($answer);
410 my($default) = $prompt =~ m/\[([yn])\]\s*$/i;
a0d0e21e 411 print STDERR $prompt;
412 chop($answer = <STDIN>);
413 $answer = $default if $answer =~ m/^\s*$/;
414 ($answer =~ m/^[yY]/);
415}
416
c623bd54 417sub unlink {
c2cd2081 418 my(@names) = @_;
39add537 419 my($cnt) = 0;
c623bd54 420
17f28c40 421 return scalar(@names) if $Is_VMS;
422
c2cd2081 423 foreach my $name (@names) {
c623bd54 424 next unless -e $name;
4a71ed0c 425 chmod 0777, $name if ($Is_OS2 || $Is_W32);
c623bd54 426 print STDERR " unlink $name\n";
39add537 427 ( CORE::unlink($name) and ++$cnt
428 or warn "Couldn't unlink $name: $!\n" ) unless $nonono;
c623bd54 429 }
39add537 430 return $cnt;
c623bd54 431}
432
e50aee73 433sub safe_unlink {
17f28c40 434 return if $nonono or $Is_VMS;
c2cd2081 435 my @names = @_;
436 foreach my $name (@names) {
e50aee73 437 next unless -e $name;
4a71ed0c 438 chmod 0777, $name if ($Is_OS2 || $Is_W32);
39add537 439 print STDERR " unlink $name\n";
440 next if CORE::unlink($name);
e50aee73 441 warn "Couldn't unlink $name: $!\n";
442 if ($! =~ /busy/i) {
443 print STDERR " mv $name $name.old\n";
68dc0745 444 safe_rename($name, "$name.old")
445 or warn "Couldn't rename $name: $!\n";
e50aee73 446 }
447 }
448}
449
68dc0745 450sub safe_rename {
c2cd2081 451 my($from,$to) = @_;
39add537 452 if (-f $to and not unlink($to)) {
e50aee73 453 my($i);
454 for ($i = 1; $i < 50; $i++) {
91a06757 455 last if rename($to, "$to.$i");
e50aee73 456 }
39add537 457 warn("Cannot rename to `$to.$i': $!"), return 0
458 if $i >= 50; # Give up!
e50aee73 459 }
460 link($from,$to) || return 0;
461 unlink($from);
462}
463
c623bd54 464sub link {
15792f64 465 my($from,$to) = @_;
466 my($success) = 0;
c623bd54 467
468 print STDERR " ln $from $to\n";
39add537 469 eval {
68dc0745 470 CORE::link($from, $to)
471 ? $success++
7bac28a0 472 : ($from =~ m#^/afs/# || $to =~ m#^/afs/#)
473 ? die "AFS" # okay inside eval {}
474 : warn "Couldn't link $from to $to: $!\n"
68dc0745 475 unless $nonono;
354f3b56 476 $packlist->{$to} = { from => $from, type => 'link' };
39add537 477 };
478 if ($@) {
17f28c40 479 print STDERR " creating new version of $to\n" if $Is_VMS and -e $to;
68dc0745 480 File::Copy::copy($from, $to)
481 ? $success++
482 : warn "Couldn't copy $from to $to: $!\n"
483 unless $nonono;
354f3b56 484 $packlist->{$to} = { type => 'file' };
39add537 485 }
15792f64 486 $success;
c623bd54 487}
488
489sub chmod {
c2cd2081 490 my($mode,$name) = @_;
c623bd54 491
39e571d4 492 return if ($^O eq 'dos');
c623bd54 493 printf STDERR " chmod %o %s\n", $mode, $name;
68dc0745 494 CORE::chmod($mode,$name)
495 || warn sprintf("Couldn't chmod %o %s: $!\n", $mode, $name)
496 unless $nonono;
497}
498
499sub copy {
500 my($from,$to) = @_;
501
502 print STDERR " cp $from $to\n";
17f28c40 503 print STDERR " creating new version of $to\n" if $Is_VMS and -e $to;
68dc0745 504 File::Copy::copy($from, $to)
505 || warn "Couldn't copy $from to $to: $!\n"
506 unless $nonono;
354f3b56 507 $packlist->{$to} = { type => 'file' };
c623bd54 508}
509
a0d0e21e 510sub samepath {
c2cd2081 511 my($p1, $p2) = @_;
eef1cf2a 512
4a71ed0c 513 return (lc($p1) eq lc($p2)) if $Is_W32;
a0d0e21e 514
75f92628 515 if ($p1 ne $p2) {
c2cd2081 516 my($dev1, $ino1, $dev2, $ino2);
a0d0e21e 517 ($dev1, $ino1) = stat($p1);
518 ($dev2, $ino2) = stat($p2);
519 ($dev1 == $dev2 && $ino1 == $ino2);
520 }
521 else {
522 1;
523 }
524}
525
526sub installlib {
527 my $dir = $File::Find::dir;
528 $dir =~ s#^\.(?![^/])/?##;
0ecb046b 529 local($depth) = $dir ? "lib/$dir" : "lib";
a0d0e21e 530
531 my $name = $_;
efc5ad56 532
533 if ($name eq 'CVS' && -d $name) {
534 $File::Find::prune = 1;
535 return;
536 }
e50aee73 537
538 # ignore patch backups and the .exists files.
539 return if $name =~ m{\.orig$|~$|^\.exists};
540
a0d0e21e 541 $name = "$dir/$name" if $dir ne '';
542
543 my $installlib = $installprivlib;
1dd15ed4 544 if ($dir =~ /^auto/ ||
eef1cf2a 545 ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) ||
4a71ed0c 546 ($name =~ /^(.*)\.(?:h|lib)$/i && $Is_W32)
eef1cf2a 547 ) {
a0d0e21e 548 $installlib = $installarchlib;
549 return unless $do_installarchlib;
550 } else {
551 return unless $do_installprivlib;
552 }
553
a0d0e21e 554 if (-f $_) {
5cc330c8 555 if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) {
3edbfbe5 556 $installlib = $installprivlib;
557 #We're installing *.al and *.ix files into $installprivlib,
558 #but we have to delete old *.al and *.ix files from the 5.000
559 #distribution:
75f92628 560 #This might not work because $archname might have changed.
68dc0745 561 unlink("$installarchlib/$name");
3edbfbe5 562 }
354f3b56 563 $packlist->{"$installlib/$name"} = { type => 'file' };
5f05dabc 564 if (compare($_, "$installlib/$name") || $nonono) {
68dc0745 565 unlink("$installlib/$name");
fcbdbaa8 566 mkpath("$installlib/$dir", 1, 0777);
75f92628 567 # HP-UX (at least) needs to maintain execute permissions
568 # on dynamically-loaded libraries.
68dc0745 569 copy_if_diff($_, "$installlib/$name")
570 and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444,
aa3cf465 571 "$installlib/$name");
a0d0e21e 572 }
a0d0e21e 573 }
574}
3edbfbe5 575
16d20bd9 576# Copy $from to $to, only if $from is different than $to.
577# Also preserve modification times for .a libraries.
578# On some systems, if you do
579# ranlib libperl.a
580# cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a
581# and then try to link against the installed libperl.a, you might
582# get an error message to the effect that the symbol table is older
583# than the library.
aa3cf465 584# Return true if copying occurred.
68dc0745 585
586sub copy_if_diff {
3edbfbe5 587 my($from,$to)=@_;
8530e788 588 return 1 if (($^O eq 'VMS') && (-d $from));
3edbfbe5 589 -f $from || die "$0: $from not found";
354f3b56 590 $packlist->{$to} = { type => 'file' };
5f05dabc 591 if (compare($from, $to) || $nonono) {
68dc0745 592 safe_unlink($to); # In case we don't have write permissions.
0ecb046b 593 if ($nonono) {
594 $from = $depth . "/" . $from if $depth;
595 }
68dc0745 596 copy($from, $to);
597 # Restore timestamps if it's a .a library or for OS/2.
4a71ed0c 598 if (!$nonono && ($Is_OS2 || $to =~ /\.a$/)) {
68dc0745 599 my ($atime, $mtime) = (stat $from)[8,9];
16d20bd9 600 utime $atime, $mtime, $to;
601 }
aa3cf465 602 1;
3edbfbe5 603 }
604}