Commit | Line | Data |
c623bd54 |
1 | #!./perl |
68dc0745 |
2 | |
3 | BEGIN { |
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 | |
10 | use strict; |
11 | use vars qw($Is_VMS $Is_W32 $Is_OS2 $nonono $versiononly $depth); |
12 | |
13 | BEGIN { |
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 |
20 | my $scr_ext = ($Is_VMS ? '.Com' : $Is_W32 ? '.bat' : ''); |
4a71ed0c |
21 | |
a0d0e21e |
22 | use File::Find; |
5f05dabc |
23 | use File::Compare; |
68dc0745 |
24 | use File::Copy (); |
0ecb046b |
25 | use File::Path (); |
354f3b56 |
26 | use ExtUtils::Packlist; |
4633a7c4 |
27 | use Config; |
91a06757 |
28 | use subs qw(unlink link chmod); |
354f3b56 |
29 | use vars qw($packlist); |
c623bd54 |
30 | |
0ecb046b |
31 | # override the ones in the rest of the script |
68dc0745 |
32 | sub mkpath { |
33 | File::Path::mkpath(@_) unless $nonono; |
0ecb046b |
34 | } |
35 | |
c2cd2081 |
36 | my $mainperldir = "/usr/bin"; |
37 | my $exe_ext = $Config{exe_ext}; |
bee1dbe2 |
38 | |
6ee623d5 |
39 | # Allow ``make install PERLNAME=something_besides_perl'': |
c2cd2081 |
40 | my $perl = defined($ENV{PERLNAME}) ? $ENV{PERLNAME} : 'perl'; |
6ee623d5 |
41 | |
c623bd54 |
42 | while (@ARGV) { |
43 | $nonono = 1 if $ARGV[0] eq '-n'; |
44 | $versiononly = 1 if $ARGV[0] eq '-v'; |
45 | shift; |
46 | } |
47 | |
17f28c40 |
48 | umask 022 unless $Is_VMS; |
45d8adaa |
49 | |
c2cd2081 |
50 | my @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 |
55 | if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; } |
17f28c40 |
56 | |
c2cd2081 |
57 | my @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 |
65 | my %archpms = ( |
e8ea6127 |
66 | Config => 1, |
38b8243a |
67 | ); |
39e571d4 |
68 | |
69 | if ($^O eq 'dos') { |
70 | push(@scripts,'djgpp/fixpmain'); |
71 | $archpms{config} = $archpms{filehand} = 1; |
72 | } |
73 | |
6ee623d5 |
74 | if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) |
75 | { |
76 | push(@scripts, map("$_.exe", @scripts)); |
77 | } |
78 | |
1dd15ed4 |
79 | find(sub { |
80 | if ("$File::Find::dir/$_" =~ m{^ext/[^/]+/(.*)\.pm$}) { |
81 | (my $pm = $1) =~ s{^lib/}{}; |
82 | $archpms{$pm} = 1; |
83 | } |
84 | }, 'ext'); |
85 | |
c2cd2081 |
86 | my $ver = $]; |
87 | my $release = substr($ver,0,3); # Not used presently. |
88 | my $patchlevel = substr($ver,3,2); |
748a9306 |
89 | die "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 |
94 | my $installbin = $Config{installbin}; |
95 | my $installscript = $Config{installscript}; |
96 | my $installprivlib = $Config{installprivlib}; |
97 | my $installarchlib = $Config{installarchlib}; |
98 | my $installsitelib = $Config{installsitelib}; |
99 | my $installsitearch = $Config{installsitearch}; |
100 | my $installman1dir = $Config{installman1dir}; |
101 | my $man1ext = $Config{man1ext}; |
102 | my $libperl = $Config{libperl}; |
4633a7c4 |
103 | # Shared library and dynamic loading suffixes. |
c2cd2081 |
104 | my $so = $Config{so}; |
105 | my $dlext = $Config{dlext}; |
4633a7c4 |
106 | |
c2cd2081 |
107 | my $d_dosuid = $Config{d_dosuid}; |
108 | my $binexp = $Config{binexp}; |
c623bd54 |
109 | |
17f28c40 |
110 | if ($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 | |
120 | if ($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 |
135 | if ($Is_W32) { |
eef1cf2a |
136 | |
c2cd2081 |
137 | my $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 |
144 | safe_unlink("$installbin/$perldll"); |
145 | copy("$perldll", "$installbin/$perldll"); |
146 | chmod(0755, "$installbin/$perldll"); |
eef1cf2a |
147 | } |
148 | |
354f3b56 |
149 | # This will be used to store the packlist |
c2cd2081 |
150 | my $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist"); |
354f3b56 |
151 | |
c623bd54 |
152 | # First we install the version-numbered executables. |
153 | |
17f28c40 |
154 | if ($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 |
162 | elsif ($^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 |
172 | elsif ($^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 |
177 | else { |
6ee623d5 |
178 | safe_unlink("$installbin/$perl.exe"); |
179 | copy("perl.exe", "$installbin/$perl.exe"); |
39e571d4 |
180 | } |
c623bd54 |
181 | |
6ee623d5 |
182 | safe_unlink("$installbin/s$perl$ver$exe_ext"); |
c623bd54 |
183 | if ($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 |
190 | my ($do_installarchlib, $do_installprivlib) = (0, 0); |
a0d0e21e |
191 | |
fcbdbaa8 |
192 | mkpath($installprivlib, 1, 0777); |
193 | mkpath($installarchlib, 1, 0777); |
194 | mkpath($installsitelib, 1, 0777) if ($installsitelib); |
195 | mkpath($installsitearch, 1, 0777) if ($installsitearch); |
4633a7c4 |
196 | |
45d8adaa |
197 | if (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 | } |
207 | else { |
208 | warn "Can't cd to lib to install lib files: $!\n"; |
209 | } |
210 | |
1aef975c |
211 | # Install header files and libraries. |
fcbdbaa8 |
212 | mkpath("$installarchlib/CORE", 1, 0777); |
c2cd2081 |
213 | my @corefiles; |
17f28c40 |
214 | if ($Is_VMS) { # We did core file selection during build |
215 | my $coredir = "lib/$Config{'arch'}/$]"; |
216 | $coredir =~ tr/./_/; |
217 | @corefiles = <$coredir/*.*>; |
218 | } |
219 | else { |
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 |
231 | foreach 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 |
242 | if (! $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 |
257 | my $mainperl_is_instperl = 0; |
a0d0e21e |
258 | |
4a71ed0c |
259 | if (!$versiononly && !$nonono && !$Is_W32 && !$Is_VMS && -t STDIN && -t STDERR |
68dc0745 |
260 | && -w $mainperldir && ! samepath($mainperldir, $installbin)) { |
c2cd2081 |
261 | my($usrbinperl) = "$mainperldir/$perl$exe_ext"; |
262 | my($instperl) = "$installbin/$perl$exe_ext"; |
263 | my($expinstperl) = "$binexp/$perl$exe_ext"; |
55497cff |
264 | |
265 | # First make sure $usrbinperl is not already the same as the perl we |
266 | # just installed. |
267 | if (-x $usrbinperl) { |
a0d0e21e |
268 | # Try to be clever about mainperl being a symbolic link |
269 | # to binexp/perl if binexp and installbin are different. |
270 | $mainperl_is_instperl = |
68dc0745 |
271 | samepath($usrbinperl, $instperl) || |
272 | samepath($usrbinperl, $expinstperl) || |
a0d0e21e |
273 | (($binexp ne $installbin) && |
55497cff |
274 | (-l $usrbinperl) && |
275 | ((readlink $usrbinperl) eq $expinstperl)); |
a0d0e21e |
276 | } |
277 | if ((! $mainperl_is_instperl) && |
68dc0745 |
278 | (yn("Many scripts expect perl to be installed as $usrbinperl.\n" . |
55497cff |
279 | "Do you wish to have $usrbinperl be the same as\n" . |
280 | "$expinstperl? [y] "))) |
1d84e8df |
281 | { |
55497cff |
282 | unlink($usrbinperl); |
1d84e8df |
283 | ( $Config{'d_link'} eq 'define' && |
284 | eval { CORE::link $instperl, $usrbinperl } ) || |
285 | eval { symlink $expinstperl, $usrbinperl } || |
286 | copy($instperl, $usrbinperl); |
287 | |
a0d0e21e |
288 | $mainperl_is_instperl = 1; |
289 | } |
290 | } |
291 | |
b971f6e4 |
292 | # Make links to ordinary names if installbin directory isn't current directory. |
293 | |
68dc0745 |
294 | if (!$versiononly && ! samepath($installbin, 'x2p')) { |
295 | safe_unlink("$installbin/a2p$exe_ext"); |
296 | copy("x2p/a2p$exe_ext", "$installbin/a2p$exe_ext"); |
297 | chmod(0755, "$installbin/a2p$exe_ext"); |
b971f6e4 |
298 | } |
299 | |
300 | # cppstdin is just a script, but it is architecture-dependent, so |
301 | # it can't safely be shared. Place it in $installbin. |
302 | # Note that Configure doesn't build cppstin if it isn't needed, so |
303 | # we skip this if cppstdin doesn't exist. |
68dc0745 |
304 | if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) { |
305 | safe_unlink("$installbin/cppstdin"); |
306 | copy("cppstdin", "$installbin/cppstdin"); |
307 | chmod(0755, "$installbin/cppstdin"); |
b971f6e4 |
308 | } |
309 | |
310 | # Install scripts. |
311 | |
312 | mkpath($installscript, 1, 0777); |
313 | |
314 | if (! $versiononly) { |
315 | for (@scripts) { |
68dc0745 |
316 | (my $base = $_) =~ s#.*/##; |
317 | copy($_, "$installscript/$base"); |
318 | chmod(0755, "$installscript/$base"); |
b971f6e4 |
319 | } |
320 | } |
321 | |
322 | # pstruct should be a link to c2ph |
323 | |
324 | if (! $versiononly) { |
4a71ed0c |
325 | safe_unlink("$installscript/pstruct$scr_ext"); |
17f28c40 |
326 | if ($^O eq 'dos' or $Is_VMS) { |
4a71ed0c |
327 | copy("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext"); |
39e571d4 |
328 | } else { |
4a71ed0c |
329 | link("$installscript/c2ph$scr_ext", "$installscript/pstruct$scr_ext"); |
39e571d4 |
330 | } |
b971f6e4 |
331 | } |
332 | |
333 | # Install pod pages. Where? I guess in $installprivlib/pod. |
334 | |
68dc0745 |
335 | if (! $versiononly || !($installprivlib =~ m/\Q$]/)) { |
b971f6e4 |
336 | mkpath("${installprivlib}/pod", 1, 0777); |
91a06757 |
337 | |
338 | # If Perl 5.003's perldiag.pod is there, rename it. |
339 | if (open POD, "${installprivlib}/pod/perldiag.pod") { |
340 | read POD, $_, 4000; |
341 | close POD; |
342 | # Some of Perl 5.003's diagnostic messages ended with periods. |
343 | if (/^=.*\.$/m) { |
344 | my ($from, $to) = ("${installprivlib}/pod/perldiag.pod", |
345 | "${installprivlib}/pod/perldiag-5.003.pod"); |
346 | print STDERR " rename $from $to"; |
347 | rename($from, $to) |
348 | or warn "Couldn't rename $from to $to: $!\n" |
349 | unless $nonono; |
350 | } |
351 | } |
352 | |
c2cd2081 |
353 | foreach my $file (@pods) { |
b971f6e4 |
354 | # $file is a name like pod/perl.pod |
68dc0745 |
355 | copy_if_diff($file, "${installprivlib}/${file}"); |
b971f6e4 |
356 | } |
91a06757 |
357 | |
b971f6e4 |
358 | } |
359 | |
a0d0e21e |
360 | # Check to make sure there aren't other perls around in installer's |
361 | # path. This is probably UNIX-specific. Check all absolute directories |
362 | # in the path except for where public executables are supposed to live. |
363 | # Also skip $mainperl if the user opted to have it be a link to the |
364 | # installed perl. |
365 | |
b971f6e4 |
366 | if (!$versiononly) { |
c2cd2081 |
367 | my ($path, @path); |
368 | my $dirsep = ($Is_OS2 || $Is_W32) ? ';' : ':' ; |
b971f6e4 |
369 | ($path = $ENV{"PATH"}) =~ s:\\:/:g ; |
370 | @path = split(/$dirsep/, $path); |
17f28c40 |
371 | if ($Is_VMS) { |
372 | my $i = 0; |
373 | while (exists $ENV{'DCL$PATH' . $i}) { |
c2cd2081 |
374 | my $dir = unixpath($ENV{'DCL$PATH' . $i}); $dir =~ s-/$--; |
17f28c40 |
375 | push(@path,$dir); |
376 | } |
377 | } |
c2cd2081 |
378 | my @otherperls; |
b971f6e4 |
379 | for (@path) { |
380 | next unless m,^/,; |
381 | # Use &samepath here because some systems have other dirs linked |
382 | # to $mainperldir (like SunOS) |
68dc0745 |
383 | next if samepath($_, $binexp); |
384 | next if ($mainperl_is_instperl && samepath($_, $mainperldir)); |
6ee623d5 |
385 | push(@otherperls, "$_/$perl$exe_ext") |
386 | if (-x "$_/$perl$exe_ext" && ! -d "$_/$perl$exe_ext"); |
b971f6e4 |
387 | } |
388 | if (@otherperls) { |
6ee623d5 |
389 | print STDERR "\nWarning: $perl appears in your path in the following " . |
b971f6e4 |
390 | "locations beyond where\nwe just installed it:\n"; |
391 | for (@otherperls) { |
392 | print STDERR " ", $_, "\n"; |
393 | } |
394 | print STDERR "\n"; |
a0d0e21e |
395 | } |
b971f6e4 |
396 | |
a0d0e21e |
397 | } |
398 | |
3f9aafa0 |
399 | $packlist->write() unless $nonono; |
c623bd54 |
400 | print STDERR " Installation complete\n"; |
401 | |
402 | exit 0; |
403 | |
404 | ############################################################################### |
405 | |
a0d0e21e |
406 | sub yn { |
c2cd2081 |
407 | my($prompt) = @_; |
408 | my($answer); |
409 | my($default) = $prompt =~ m/\[([yn])\]\s*$/i; |
a0d0e21e |
410 | print STDERR $prompt; |
411 | chop($answer = <STDIN>); |
412 | $answer = $default if $answer =~ m/^\s*$/; |
413 | ($answer =~ m/^[yY]/); |
414 | } |
415 | |
c623bd54 |
416 | sub unlink { |
c2cd2081 |
417 | my(@names) = @_; |
39add537 |
418 | my($cnt) = 0; |
c623bd54 |
419 | |
17f28c40 |
420 | return scalar(@names) if $Is_VMS; |
421 | |
c2cd2081 |
422 | foreach my $name (@names) { |
c623bd54 |
423 | next unless -e $name; |
4a71ed0c |
424 | chmod 0777, $name if ($Is_OS2 || $Is_W32); |
c623bd54 |
425 | print STDERR " unlink $name\n"; |
39add537 |
426 | ( CORE::unlink($name) and ++$cnt |
427 | or warn "Couldn't unlink $name: $!\n" ) unless $nonono; |
c623bd54 |
428 | } |
39add537 |
429 | return $cnt; |
c623bd54 |
430 | } |
431 | |
e50aee73 |
432 | sub safe_unlink { |
17f28c40 |
433 | return if $nonono or $Is_VMS; |
c2cd2081 |
434 | my @names = @_; |
435 | foreach my $name (@names) { |
e50aee73 |
436 | next unless -e $name; |
4a71ed0c |
437 | chmod 0777, $name if ($Is_OS2 || $Is_W32); |
39add537 |
438 | print STDERR " unlink $name\n"; |
439 | next if CORE::unlink($name); |
e50aee73 |
440 | warn "Couldn't unlink $name: $!\n"; |
441 | if ($! =~ /busy/i) { |
442 | print STDERR " mv $name $name.old\n"; |
68dc0745 |
443 | safe_rename($name, "$name.old") |
444 | or warn "Couldn't rename $name: $!\n"; |
e50aee73 |
445 | } |
446 | } |
447 | } |
448 | |
68dc0745 |
449 | sub safe_rename { |
c2cd2081 |
450 | my($from,$to) = @_; |
39add537 |
451 | if (-f $to and not unlink($to)) { |
e50aee73 |
452 | my($i); |
453 | for ($i = 1; $i < 50; $i++) { |
91a06757 |
454 | last if rename($to, "$to.$i"); |
e50aee73 |
455 | } |
39add537 |
456 | warn("Cannot rename to `$to.$i': $!"), return 0 |
457 | if $i >= 50; # Give up! |
e50aee73 |
458 | } |
459 | link($from,$to) || return 0; |
460 | unlink($from); |
461 | } |
462 | |
c623bd54 |
463 | sub link { |
15792f64 |
464 | my($from,$to) = @_; |
465 | my($success) = 0; |
c623bd54 |
466 | |
467 | print STDERR " ln $from $to\n"; |
39add537 |
468 | eval { |
68dc0745 |
469 | CORE::link($from, $to) |
470 | ? $success++ |
7bac28a0 |
471 | : ($from =~ m#^/afs/# || $to =~ m#^/afs/#) |
472 | ? die "AFS" # okay inside eval {} |
473 | : warn "Couldn't link $from to $to: $!\n" |
68dc0745 |
474 | unless $nonono; |
354f3b56 |
475 | $packlist->{$to} = { from => $from, type => 'link' }; |
39add537 |
476 | }; |
477 | if ($@) { |
17f28c40 |
478 | print STDERR " creating new version of $to\n" if $Is_VMS and -e $to; |
68dc0745 |
479 | File::Copy::copy($from, $to) |
480 | ? $success++ |
481 | : warn "Couldn't copy $from to $to: $!\n" |
482 | unless $nonono; |
354f3b56 |
483 | $packlist->{$to} = { type => 'file' }; |
39add537 |
484 | } |
15792f64 |
485 | $success; |
c623bd54 |
486 | } |
487 | |
488 | sub chmod { |
c2cd2081 |
489 | my($mode,$name) = @_; |
c623bd54 |
490 | |
39e571d4 |
491 | return if ($^O eq 'dos'); |
c623bd54 |
492 | printf STDERR " chmod %o %s\n", $mode, $name; |
68dc0745 |
493 | CORE::chmod($mode,$name) |
494 | || warn sprintf("Couldn't chmod %o %s: $!\n", $mode, $name) |
495 | unless $nonono; |
496 | } |
497 | |
498 | sub copy { |
499 | my($from,$to) = @_; |
500 | |
501 | print STDERR " cp $from $to\n"; |
17f28c40 |
502 | print STDERR " creating new version of $to\n" if $Is_VMS and -e $to; |
68dc0745 |
503 | File::Copy::copy($from, $to) |
504 | || warn "Couldn't copy $from to $to: $!\n" |
505 | unless $nonono; |
354f3b56 |
506 | $packlist->{$to} = { type => 'file' }; |
c623bd54 |
507 | } |
508 | |
a0d0e21e |
509 | sub samepath { |
c2cd2081 |
510 | my($p1, $p2) = @_; |
eef1cf2a |
511 | |
4a71ed0c |
512 | return (lc($p1) eq lc($p2)) if $Is_W32; |
a0d0e21e |
513 | |
75f92628 |
514 | if ($p1 ne $p2) { |
c2cd2081 |
515 | my($dev1, $ino1, $dev2, $ino2); |
a0d0e21e |
516 | ($dev1, $ino1) = stat($p1); |
517 | ($dev2, $ino2) = stat($p2); |
518 | ($dev1 == $dev2 && $ino1 == $ino2); |
519 | } |
520 | else { |
521 | 1; |
522 | } |
523 | } |
524 | |
525 | sub installlib { |
526 | my $dir = $File::Find::dir; |
527 | $dir =~ s#^\.(?![^/])/?##; |
0ecb046b |
528 | local($depth) = $dir ? "lib/$dir" : "lib"; |
a0d0e21e |
529 | |
530 | my $name = $_; |
efc5ad56 |
531 | |
532 | if ($name eq 'CVS' && -d $name) { |
533 | $File::Find::prune = 1; |
534 | return; |
535 | } |
e50aee73 |
536 | |
537 | # ignore patch backups and the .exists files. |
538 | return if $name =~ m{\.orig$|~$|^\.exists}; |
539 | |
a0d0e21e |
540 | $name = "$dir/$name" if $dir ne ''; |
541 | |
542 | my $installlib = $installprivlib; |
1dd15ed4 |
543 | if ($dir =~ /^auto/ || |
eef1cf2a |
544 | ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) || |
4a71ed0c |
545 | ($name =~ /^(.*)\.(?:h|lib)$/i && $Is_W32) |
eef1cf2a |
546 | ) { |
a0d0e21e |
547 | $installlib = $installarchlib; |
548 | return unless $do_installarchlib; |
549 | } else { |
550 | return unless $do_installprivlib; |
551 | } |
552 | |
a0d0e21e |
553 | if (-f $_) { |
5cc330c8 |
554 | if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$] && $archpms{$1})) { |
3edbfbe5 |
555 | $installlib = $installprivlib; |
556 | #We're installing *.al and *.ix files into $installprivlib, |
557 | #but we have to delete old *.al and *.ix files from the 5.000 |
558 | #distribution: |
75f92628 |
559 | #This might not work because $archname might have changed. |
68dc0745 |
560 | unlink("$installarchlib/$name"); |
3edbfbe5 |
561 | } |
354f3b56 |
562 | $packlist->{"$installlib/$name"} = { type => 'file' }; |
5f05dabc |
563 | if (compare($_, "$installlib/$name") || $nonono) { |
68dc0745 |
564 | unlink("$installlib/$name"); |
fcbdbaa8 |
565 | mkpath("$installlib/$dir", 1, 0777); |
75f92628 |
566 | # HP-UX (at least) needs to maintain execute permissions |
567 | # on dynamically-loaded libraries. |
68dc0745 |
568 | copy_if_diff($_, "$installlib/$name") |
569 | and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, |
aa3cf465 |
570 | "$installlib/$name"); |
a0d0e21e |
571 | } |
a0d0e21e |
572 | } |
573 | } |
3edbfbe5 |
574 | |
16d20bd9 |
575 | # Copy $from to $to, only if $from is different than $to. |
576 | # Also preserve modification times for .a libraries. |
577 | # On some systems, if you do |
578 | # ranlib libperl.a |
579 | # cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a |
580 | # and then try to link against the installed libperl.a, you might |
581 | # get an error message to the effect that the symbol table is older |
582 | # than the library. |
aa3cf465 |
583 | # Return true if copying occurred. |
68dc0745 |
584 | |
585 | sub copy_if_diff { |
3edbfbe5 |
586 | my($from,$to)=@_; |
8530e788 |
587 | return 1 if (($^O eq 'VMS') && (-d $from)); |
3edbfbe5 |
588 | -f $from || die "$0: $from not found"; |
354f3b56 |
589 | $packlist->{$to} = { type => 'file' }; |
5f05dabc |
590 | if (compare($from, $to) || $nonono) { |
68dc0745 |
591 | safe_unlink($to); # In case we don't have write permissions. |
0ecb046b |
592 | if ($nonono) { |
593 | $from = $depth . "/" . $from if $depth; |
594 | } |
68dc0745 |
595 | copy($from, $to); |
596 | # Restore timestamps if it's a .a library or for OS/2. |
4a71ed0c |
597 | if (!$nonono && ($Is_OS2 || $to =~ /\.a$/)) { |
68dc0745 |
598 | my ($atime, $mtime) = (stat $from)[8,9]; |
16d20bd9 |
599 | utime $atime, $mtime, $to; |
600 | } |
aa3cf465 |
601 | 1; |
3edbfbe5 |
602 | } |
603 | } |