Commit | Line | Data |
---|---|---|
c623bd54 | 1 | #!./perl |
68dc0745 | 2 | |
3 | BEGIN { | |
c90c0ff4 | 4 | require 5.004; |
922ef74c | 5 | chdir '..' if !-d 'lib' and -d '../lib'; |
68dc0745 | 6 | @INC = 'lib'; |
7 | $ENV{PERL5LIB} = 'lib'; | |
a29d2910 A |
8 | } |
9 | ||
1d230ada NC |
10 | BEGIN { |
11 | use Config; | |
12 | if ($Config{userelocatableinc}) { | |
13 | # This might be a considered a hack. Need to get information about the | |
14 | # configuration from Config.pm *before* Config.pm expands any .../ | |
15 | # prefixes. | |
16 | # | |
17 | # So we set $^X to pretend that we're the already installed perl, so | |
18 | # Config.pm doesits ... expansion off that location. | |
19 | ||
20 | my $location = $Config{initialinstalllocation}; | |
21 | die <<'OS' unless defined $location; | |
22 | $Config{initialinstalllocation} is not defined - can't install a relocatable | |
23 | perl without this. | |
24 | OS | |
25 | $^X = "$location/perl"; | |
26 | # And then remove all trace of ever having loaded Config.pm, so that | |
27 | # it will reload with the revised $^X | |
28 | undef %Config::; | |
29 | delete $INC{"Config.pm"}; | |
30 | delete $INC{"Config_heavy.pl"}; | |
31 | # You never saw us. We weren't here. | |
32 | } | |
33 | } | |
34 | ||
a29d2910 | 35 | use strict; |
60ce2417 | 36 | my ($Is_VMS, $Is_W32, $Is_OS2, $Is_Cygwin, $Is_Darwin, |
68006eea | 37 | %opts, $dostrip, $versiononly, $force, |
2e2b85db | 38 | $otherperls, $archname, $Is_NetWare, $nwinstall, $nopods); |
5f675712 | 39 | use vars qw /$depth/; |
a29d2910 A |
40 | |
41 | BEGIN { | |
17f28c40 | 42 | $Is_VMS = $^O eq 'VMS'; |
4a71ed0c GS |
43 | $Is_W32 = $^O eq 'MSWin32'; |
44 | $Is_OS2 = $^O eq 'os2'; | |
146174a9 | 45 | $Is_Cygwin = $^O eq 'cygwin'; |
60ce2417 | 46 | $Is_Darwin = $^O eq 'darwin'; |
17f28c40 | 47 | if ($Is_VMS) { eval 'use VMS::Filespec;' } |
68dc0745 | 48 | } |
49 | ||
c2cd2081 | 50 | my $scr_ext = ($Is_VMS ? '.Com' : $Is_W32 ? '.bat' : ''); |
4a71ed0c | 51 | |
a0d0e21e | 52 | use File::Find; |
5f05dabc | 53 | use File::Compare; |
68dc0745 | 54 | use File::Copy (); |
0ecb046b | 55 | use File::Path (); |
354f3b56 | 56 | use ExtUtils::Packlist; |
ebef0ab4 | 57 | use Cwd; |
4633a7c4 | 58 | use Config; |
91a06757 | 59 | use subs qw(unlink link chmod); |
c623bd54 | 60 | |
791b4ad3 PZ |
61 | if ($Config{d_umask}) { |
62 | umask(022); # umasks like 077 aren't that useful for installations | |
63 | } | |
64 | ||
2986a63f JH |
65 | $Is_NetWare = $Config{osname} eq 'NetWare'; |
66 | if ($Is_NetWare) { | |
2e2b85db MB |
67 | $Is_W32 = 0; |
68 | $scr_ext = '.pl'; | |
2986a63f JH |
69 | } |
70 | ||
0ecb046b | 71 | # override the ones in the rest of the script |
68dc0745 | 72 | sub mkpath { |
68006eea | 73 | File::Path::mkpath(@_) unless $opts{notify}; |
0ecb046b SH |
74 | } |
75 | ||
c2cd2081 KS |
76 | my $mainperldir = "/usr/bin"; |
77 | my $exe_ext = $Config{exe_ext}; | |
bee1dbe2 | 78 | |
6ee623d5 | 79 | # Allow ``make install PERLNAME=something_besides_perl'': |
c2cd2081 | 80 | my $perl = defined($ENV{PERLNAME}) ? $ENV{PERLNAME} : 'perl'; |
6ee623d5 | 81 | |
146174a9 | 82 | # This is the base used for versioned names, like "perl5.6.0". |
beb13193 RS |
83 | # It's separate because a common use of $PERLNAME is to install |
84 | # perl as "perl5", if that's used as base for versioned files you | |
146174a9 | 85 | # get "perl55.6.0". |
beb13193 RS |
86 | my $perl_verbase = defined($ENV{PERLNAME_VERBASE}) |
87 | ? $ENV{PERLNAME_VERBASE} | |
88 | : $perl; | |
5d25492c PP |
89 | my $dbg = ''; |
90 | my $ndbg = ''; | |
91 | if ( $Is_VMS ) { | |
92 | if ( defined $Config{usevmsdebug} ) { | |
93 | if ( $Config{usevmsdebug} eq 'define' ) { | |
94 | $dbg = 'dbg'; | |
95 | $ndbg = 'ndbg'; | |
96 | } | |
97 | } | |
98 | } | |
beb13193 | 99 | |
5f675712 | 100 | $otherperls = 1; |
c623bd54 | 101 | while (@ARGV) { |
68006eea | 102 | $opts{notify} = 1 if $ARGV[0] eq '-n'; |
f556e5b9 | 103 | $dostrip = 1 if $ARGV[0] eq '-s'; |
c623bd54 | 104 | $versiononly = 1 if $ARGV[0] eq '-v'; |
f4a342c3 | 105 | $versiononly = 0 if $ARGV[0] eq '+v'; |
68006eea | 106 | $opts{silent} = 1 if $ARGV[0] eq '-S'; |
5f675712 | 107 | $otherperls = 0 if $ARGV[0] eq '-o'; |
2e2b85db | 108 | $force = 1 if $ARGV[0] eq '-f'; |
68006eea | 109 | $opts{verbose} = 1 if $ARGV[0] eq '-V' || $ARGV [0] eq '-n'; |
f4a342c3 | 110 | $archname = 1 if $ARGV[0] eq '-A'; |
2e2b85db | 111 | $nwinstall = 1 if $ARGV[0] eq '-netware'; |
4f048c5d | 112 | $nopods = 1 if $ARGV[0] eq '-p'; |
2227e2d5 | 113 | $opts{destdir} = $1 if $ARGV[0] =~ /^-?-destdir=(.*)$/; |
33bd2d8f | 114 | if ($ARGV[0] eq '-?' or $ARGV[0] =~ /^-?-h/) { |
2e2b85db | 115 | print <<"EOT"; |
33bd2d8f NC |
116 | Usage $0: [switches] |
117 | -n Don't actually run any commands; just print them. | |
118 | -s Run strip on installed binaries. | |
119 | -v Only install perl as a binary with the version number in the name. | |
120 | (Override whatever config.sh says) | |
121 | +v Install perl as "perl" and as a binary with the version number in | |
122 | the name. (Override whatever config.sh says) | |
123 | -S Silent mode. | |
2e2b85db | 124 | -f Force installation (don't check if same version is there) |
33bd2d8f NC |
125 | -o Skip checking for other copies of perl in your PATH. |
126 | -V Verbose mode. | |
127 | -A Also install perl with the architecture's name in the perl binary's | |
128 | name. | |
4f048c5d | 129 | -p Don't install the pod files. [This will break use diagnostics;] |
33bd2d8f | 130 | -netware Install correctly on a Netware server. |
70eaf669 | 131 | -destdir Prefix installation directories by this string. |
33bd2d8f | 132 | EOT |
2e2b85db | 133 | exit; |
33bd2d8f | 134 | } |
c623bd54 LW |
135 | shift; |
136 | } | |
137 | ||
f4a342c3 | 138 | $versiononly = 1 if $Config{versiononly} && !defined $versiononly; |
21dae8a0 SC |
139 | my (@scripts, @tolink); |
140 | open SCRIPTS, "utils.lst" or die "Can't open utils.lst: $!"; | |
141 | while (<SCRIPTS>) { | |
142 | next if /^#/; | |
71c9e11c JH |
143 | s/\s*#\s*pod\s*=.*//; # install script regardless of pod location |
144 | next if /a2p/; # a2p is binary, to be installed separately | |
21dae8a0 SC |
145 | chomp; |
146 | if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) { | |
2e2b85db MB |
147 | push @scripts, $1; |
148 | push @tolink, [$1, $2]; | |
21dae8a0 | 149 | } else { |
2e2b85db | 150 | push @scripts, $_; |
21dae8a0 SC |
151 | } |
152 | } | |
153 | close SCRIPTS; | |
16d20bd9 | 154 | |
4a71ed0c | 155 | if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; } |
17f28c40 | 156 | |
ffb5d6c5 | 157 | my @pods = $nopods ? () : (<pod/*.pod>, 'x2p/a2p.pod'); |
c623bd54 | 158 | |
e8ea6127 AD |
159 | # Specify here any .pm files that are actually architecture-dependent. |
160 | # (Those included with XS extensions under ext/ are automatically | |
161 | # added later.) | |
162 | # Now that the default privlib has the full perl version number included, | |
0b3bfb33 | 163 | # we no longer have to play the trick of sticking version-specific .pm |
e8ea6127 | 164 | # files under the archlib directory. |
c2cd2081 | 165 | my %archpms = ( |
0b3bfb33 NIS |
166 | Config => 1, |
167 | lib => 1, | |
168 | Cwd => 1, | |
38b8243a | 169 | ); |
39e571d4 LM |
170 | |
171 | if ($^O eq 'dos') { | |
172 | push(@scripts,'djgpp/fixpmain'); | |
173 | $archpms{config} = $archpms{filehand} = 1; | |
174 | } | |
175 | ||
2e2b85db MB |
176 | if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) { |
177 | push(@scripts, map("$_.exe", @scripts)); | |
6ee623d5 GS |
178 | } |
179 | ||
1dd15ed4 | 180 | find(sub { |
2e2b85db MB |
181 | if ("$File::Find::dir/$_" =~ m{^ext\b(.*)/([^/]+)\.pm$}) { |
182 | my($path, $modname) = ($1,$2); | |
68c887af | 183 | |
1a959400 BD |
184 | # strip to optional "/lib", or remove trailing component |
185 | $path =~ s{.*/lib\b}{} or $path =~ s{/[^/]*$}{}; | |
68c887af | 186 | |
2e2b85db MB |
187 | # strip any leading / |
188 | $path =~ s{^/}{}; | |
68c887af | 189 | |
2e2b85db MB |
190 | # reconstitute canonical module name |
191 | $modname = "$path/$modname" if length $path; | |
68c887af | 192 | |
2e2b85db MB |
193 | # remember it |
194 | $archpms{$modname} = 1; | |
195 | } | |
196 | }, 'ext'); | |
1dd15ed4 | 197 | |
68c887af GS |
198 | # print "[$_]\n" for sort keys %archpms; |
199 | ||
146174a9 | 200 | my $ver = $Config{version}; |
f2766b05 | 201 | my $release = substr($],0,3); # Not used currently. |
03284eb6 | 202 | my $patchlevel = substr($],3,2); |
748a9306 | 203 | die "Patchlevel of perl ($patchlevel)", |
cceca5ed GS |
204 | "and patchlevel of config.sh ($Config{'PERL_VERSION'}) don't match\n" |
205 | if $patchlevel != $Config{'PERL_VERSION'}; | |
4633a7c4 LW |
206 | |
207 | # Fetch some frequently-used items from %Config | |
2227e2d5 NC |
208 | my $installbin = "$opts{destdir}$Config{installbin}"; |
209 | my $installscript = "$opts{destdir}$Config{installscript}"; | |
210 | my $installprivlib = "$opts{destdir}$Config{installprivlib}"; | |
211 | my $installarchlib = "$opts{destdir}$Config{installarchlib}"; | |
212 | my $installsitelib = "$opts{destdir}$Config{installsitelib}"; | |
213 | my $installsitearch = "$opts{destdir}$Config{installsitearch}"; | |
214 | my $installman1dir = "$opts{destdir}$Config{installman1dir}"; | |
c2cd2081 KS |
215 | my $man1ext = $Config{man1ext}; |
216 | my $libperl = $Config{libperl}; | |
4633a7c4 | 217 | # Shared library and dynamic loading suffixes. |
c2cd2081 KS |
218 | my $so = $Config{so}; |
219 | my $dlext = $Config{dlext}; | |
146174a9 | 220 | my $dlsrc = $Config{dlsrc}; |
f2766b05 PP |
221 | if ($^O eq 'os390') { |
222 | my $pwd; | |
223 | chomp($pwd=`pwd`); | |
224 | my $archlibexp = $Config{archlibexp}; | |
225 | my $usedl = $Config{usedl}; | |
226 | if ($usedl eq 'define') { | |
2e2b85db | 227 | `./$^X -pibak -e 's{$pwd\/libperl.x}{$archlibexp/CORE/libperl.x}' lib/Config.pm`; |
f2766b05 PP |
228 | } |
229 | } | |
4633a7c4 | 230 | |
2986a63f | 231 | if ($nwinstall) { |
2e2b85db MB |
232 | # This is required only if we are installing on a NetWare server |
233 | $installscript = $Config{installnwscripts}; | |
234 | $installprivlib = $Config{installnwlib}; | |
235 | $installarchlib = $Config{installnwlib}; | |
236 | $installsitelib = $Config{installnwlib}; | |
2986a63f JH |
237 | } |
238 | ||
c2cd2081 KS |
239 | my $d_dosuid = $Config{d_dosuid}; |
240 | my $binexp = $Config{binexp}; | |
c623bd54 | 241 | |
17f28c40 CB |
242 | if ($Is_VMS) { # Hang in there until File::Spec hits the big time |
243 | foreach ( \$installbin, \$installscript, \$installprivlib, | |
2e2b85db MB |
244 | \$installarchlib, \$installsitelib, \$installsitearch, |
245 | \$installman1dir ) { | |
246 | $$_ = unixify($$_); $$_ =~ s:/$::; | |
17f28c40 CB |
247 | } |
248 | } | |
249 | ||
c623bd54 LW |
250 | # Do some quick sanity checks. |
251 | ||
68006eea | 252 | if (!$opts{notify} && $d_dosuid && $>) { die "You must run as root to install suidperl\n"; } |
c623bd54 | 253 | |
fe14fcc3 | 254 | $installbin || die "No installbin directory in config.sh\n"; |
68006eea NC |
255 | -d $installbin || mkpath($installbin, $opts{verbose}, 0777); |
256 | -d $installbin || $opts{notify} || die "$installbin is not a directory\n"; | |
257 | -w $installbin || $opts{notify} || die "$installbin is not writable by you\n" | |
258 | unless $installbin =~ m#^/afs/# || $opts{notify}; | |
c623bd54 | 259 | |
2986a63f | 260 | if (!$Is_NetWare) { |
5d25492c | 261 | if (!$Is_VMS) { |
39add537 | 262 | -x 'perl' . $exe_ext || die "perl isn't executable!\n"; |
5d25492c PP |
263 | } |
264 | else { | |
265 | -x $ndbg . 'perl' . $exe_ext || die "${ndbg}perl$exe_ext isn't executable!\n"; | |
266 | if ($dbg) { | |
267 | -x $dbg . 'perl' . $exe_ext || die "${dbg}perl$exe_ext isn't executable!\n"; | |
268 | } | |
269 | } | |
39add537 | 270 | -x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid; |
c623bd54 | 271 | |
9fba8746 | 272 | -f 't/rantests' || $Is_W32 |
2e2b85db MB |
273 | || warn "WARNING: You've never run 'make test' or", |
274 | " some tests failed! (Installing anyway.)\n"; | |
2986a63f | 275 | } #if (!$Is_NetWare) |
c623bd54 | 276 | |
25207203 JH |
277 | # This will be used to store the packlist |
278 | my $packlist = ExtUtils::Packlist->new("$installarchlib/.packlist"); | |
279 | ||
2e2b85db MB |
280 | if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) { |
281 | my $perldll; | |
282 | ||
283 | if ($Is_Cygwin) { | |
284 | $perldll = $libperl; | |
7e73a980 | 285 | my $v_e_r_s = substr($ver,0,-2); $v_e_r_s =~ tr/./_/; |
2e2b85db MB |
286 | $perldll =~ s/(\..*)?$/$v_e_r_s.$dlext/; |
287 | $perldll =~ s/^lib/cyg/; | |
2e2b85db | 288 | } else { |
abf0ed0d | 289 | $perldll = 'perl511.' . $dlext; |
2e2b85db | 290 | } |
5f675712 | 291 | |
2e2b85db MB |
292 | if ($dlsrc ne "dl_none.xs") { |
293 | -f $perldll || die "No perl DLL built\n"; | |
294 | } | |
0b3bfb33 | 295 | |
2e2b85db MB |
296 | # Install the DLL |
297 | safe_unlink("$installbin/$perldll"); | |
298 | copy("$perldll", "$installbin/$perldll"); | |
299 | chmod(0755, "$installbin/$perldll"); | |
25207203 | 300 | $packlist->{"$installbin/$perldll"} = { type => 'file' }; |
2986a63f | 301 | } # if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) |
eef1cf2a | 302 | |
c623bd54 LW |
303 | # First we install the version-numbered executables. |
304 | ||
17f28c40 | 305 | if ($Is_VMS) { |
9edbfc61 PP |
306 | safe_unlink("$installbin/perl_setup.com"); |
307 | copy("perl_setup.com", "$installbin/perl_setup.com"); | |
308 | chmod(0755, "$installbin/perl_setup.com"); | |
5d25492c PP |
309 | safe_unlink("$installbin/$dbg$perl$exe_ext"); |
310 | copy("$dbg$perl$exe_ext", "$installbin/$dbg$perl$exe_ext"); | |
311 | chmod(0755, "$installbin/$dbg$perl$exe_ext"); | |
312 | safe_unlink("$installbin/$dbg${perl}shr$exe_ext"); | |
313 | copy("$dbg${perl}shr$exe_ext", "$installbin/$dbg${perl}shr$exe_ext"); | |
314 | chmod(0755, "$installbin/$dbg${perl}shr$exe_ext"); | |
315 | if ($ndbg) { | |
9edbfc61 PP |
316 | safe_unlink("$installbin/$ndbg$perl$exe_ext"); |
317 | copy("$ndbg$perl$exe_ext", "$installbin/$ndbg$perl$exe_ext"); | |
318 | chmod(0755, "$installbin/$ndbg$perl$exe_ext"); | |
319 | safe_unlink("$installbin/${dbg}a2p$exe_ext"); | |
320 | copy("x2p/${dbg}a2p$exe_ext", "$installbin/${dbg}a2p$exe_ext"); | |
321 | chmod(0755, "$installbin/${dbg}a2p$exe_ext"); | |
5d25492c | 322 | } |
17f28c40 | 323 | } |
1d84e8df JH |
324 | elsif ($^O eq 'mpeix') { |
325 | # MPE lacks hard links and requires that executables with special | |
326 | # capabilities reside in the MPE namespace. | |
327 | safe_unlink("$installbin/perl$ver$exe_ext", $Config{perlpath}); | |
328 | # Install the primary executable into the MPE namespace as perlpath. | |
329 | copy("perl$exe_ext", $Config{perlpath}); | |
330 | chmod(0755, $Config{perlpath}); | |
331 | # Create a backup copy with the version number. | |
332 | link($Config{perlpath}, "$installbin/perl$ver$exe_ext"); | |
333 | } | |
3f5ee302 | 334 | elsif ($^O ne 'dos') { |
2e2b85db MB |
335 | if (!$Is_NetWare) { |
336 | safe_unlink("$installbin/$perl_verbase$ver$exe_ext"); | |
337 | copy("perl$exe_ext", "$installbin/$perl_verbase$ver$exe_ext"); | |
338 | strip("$installbin/$perl_verbase$ver$exe_ext"); | |
339 | chmod(0755, "$installbin/$perl_verbase$ver$exe_ext"); | |
340 | } | |
341 | else { | |
342 | # If installing onto a NetWare server | |
343 | if ($nwinstall) { | |
344 | # Copy perl.nlm, echo.nlm, type.nlm, a2p.nlm & cgi2perl.nlm | |
345 | mkpath($Config{installnwsystem}, 1, 0777); | |
346 | copy("netware\\".$ENV{'MAKE_TYPE'}."\\perl.nlm", $Config{installnwsystem}); | |
347 | copy("netware\\testnlm\\echo\\echo.nlm", $Config{installnwsystem}); | |
348 | copy("netware\\testnlm\\type\\type.nlm", $Config{installnwsystem}); | |
349 | copy("x2p\\a2p.nlm", $Config{installnwsystem}); | |
350 | chmod(0755, "$Config{installnwsystem}\\perl.nlm"); | |
351 | mkpath($Config{installnwlcgi}, 1, 0777); | |
352 | copy("lib\\auto\\cgi2perl\\cgi2perl.nlm", $Config{installnwlcgi}); | |
2986a63f | 353 | } |
2e2b85db | 354 | } #if (!$Is_NetWare) |
3f5ee302 | 355 | } |
1d84e8df | 356 | else { |
6ee623d5 GS |
357 | safe_unlink("$installbin/$perl.exe"); |
358 | copy("perl.exe", "$installbin/$perl.exe"); | |
39e571d4 | 359 | } |
c623bd54 | 360 | |
beb13193 | 361 | safe_unlink("$installbin/s$perl_verbase$ver$exe_ext"); |
c623bd54 | 362 | if ($d_dosuid) { |
beb13193 RS |
363 | copy("suidperl$exe_ext", "$installbin/s$perl_verbase$ver$exe_ext"); |
364 | chmod(04711, "$installbin/s$perl_verbase$ver$exe_ext"); | |
c623bd54 LW |
365 | } |
366 | ||
45d8adaa LW |
367 | # Install library files. |
368 | ||
c2cd2081 | 369 | my ($do_installarchlib, $do_installprivlib) = (0, 0); |
7e73a980 | 370 | my $vershort = $Is_Cygwin ? substr($ver,0,-2) : $ver; |
0b3bfb33 | 371 | |
68006eea NC |
372 | mkpath($installprivlib, $opts{verbose}, 0777); |
373 | mkpath($installarchlib, $opts{verbose}, 0777); | |
374 | mkpath($installsitelib, $opts{verbose}, 0777) if ($installsitelib); | |
375 | mkpath($installsitearch, $opts{verbose}, 0777) if ($installsitearch); | |
4633a7c4 | 376 | |
45d8adaa | 377 | if (chdir "lib") { |
68dc0745 | 378 | $do_installarchlib = ! samepath($installarchlib, '.'); |
379 | $do_installprivlib = ! samepath($installprivlib, '.'); | |
7e73a980 | 380 | $do_installprivlib = 0 if $versiononly && !($installprivlib =~ m/\Q$vershort/); |
45d8adaa | 381 | |
a0d0e21e LW |
382 | if ($do_installarchlib || $do_installprivlib) { |
383 | find(\&installlib, '.'); | |
45d8adaa LW |
384 | } |
385 | chdir ".." || die "Can't cd back to source directory: $!\n"; | |
386 | } | |
387 | else { | |
388 | warn "Can't cd to lib to install lib files: $!\n"; | |
389 | } | |
390 | ||
1aef975c | 391 | # Install header files and libraries. |
68006eea | 392 | mkpath("$installarchlib/CORE", $opts{verbose}, 0777); |
c2cd2081 | 393 | my @corefiles; |
17f28c40 | 394 | if ($Is_VMS) { # We did core file selection during build |
0185066f | 395 | my $coredir = "lib/$Config{archname}/$ver/CORE"; |
17f28c40 | 396 | $coredir =~ tr/./_/; |
0185066f | 397 | map { s|^$coredir/||i; } @corefiles = <$coredir/*.*>; |
17f28c40 CB |
398 | } |
399 | else { | |
8736538c | 400 | # [als] hard-coded 'libperl' name... not good! |
1933e12c | 401 | @corefiles = <*.h libperl*.* perl*$Config{lib_ext}>; |
8736538c | 402 | |
17f28c40 CB |
403 | # AIX needs perl.exp installed as well. |
404 | push(@corefiles,'perl.exp') if $^O eq 'aix'; | |
9d7f10f2 | 405 | if ($^O eq 'mpeix') { |
2e2b85db | 406 | # MPE needs mpeixish.h installed as well. |
68006eea | 407 | mkpath("$installarchlib/CORE/mpeix", $opts{verbose}, 0777); |
2e2b85db | 408 | push(@corefiles,'mpeix/mpeixish.h'); |
9d7f10f2 | 409 | } |
17f28c40 CB |
410 | # If they have built sperl.o... |
411 | push(@corefiles,'sperl.o') if -f 'sperl.o'; | |
412 | } | |
c2cd2081 | 413 | foreach my $file (@corefiles) { |
aa3cf465 | 414 | # HP-UX (at least) needs to maintain execute permissions |
efc5ad56 | 415 | # on dynamically-loadable libraries. So we do it for all. |
8f1f23e8 | 416 | if (copy_if_diff($file,"$installarchlib/CORE/$file")) { |
f556e5b9 | 417 | if ($file =~ /\.(\Q$so\E|\Q$dlext\E)$/) { |
f556e5b9 | 418 | strip("-S", "$installarchlib/CORE/$file") if $^O =~ /^(rhapsody|darwin)$/; |
2e2b85db | 419 | chmod(0555, "$installarchlib/CORE/$file"); |
8f1f23e8 W |
420 | } else { |
421 | chmod(0444, "$installarchlib/CORE/$file"); | |
422 | } | |
423 | } | |
340f689c | 424 | } |
3edbfbe5 | 425 | |
156620fa NA |
426 | # Install main perl executables |
427 | # Make links to ordinary names if installbin directory isn't current directory. | |
428 | ||
2986a63f | 429 | if (! $versiononly && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS && ! $Is_NetWare) { |
6ee623d5 | 430 | safe_unlink("$installbin/$perl$exe_ext", "$installbin/suid$perl$exe_ext"); |
1d84e8df JH |
431 | if ($^O eq 'mpeix') { |
432 | # MPE doesn't support hard links, so use a symlink. | |
433 | # We don't want another cloned copy. | |
2e2b85db | 434 | symlink($Config{perlpath}, "$installbin/perl$exe_ext"); |
7e6b8b1f PG |
435 | } elsif ($^O eq 'vos') { |
436 | # VOS doesn't support hard links, so use a symlink. | |
2e2b85db MB |
437 | symlink("$installbin/$perl_verbase$ver$exe_ext", |
438 | "$installbin/$perl$exe_ext"); | |
1d84e8df | 439 | } else { |
beb13193 RS |
440 | link("$installbin/$perl_verbase$ver$exe_ext", |
441 | "$installbin/$perl$exe_ext"); | |
1d84e8df | 442 | } |
86207487 | 443 | link("$installbin/$perl_verbase$ver$exe_ext", |
0b3bfb33 | 444 | "$installbin/suid$perl$exe_ext") |
156620fa NA |
445 | if $d_dosuid; |
446 | } | |
447 | ||
f4a342c3 JH |
448 | # For development purposes it can be very useful to have multiple perls |
449 | # build for different "architectures" (eg threading or not) simultaneously. | |
450 | if ($archname && ! samepath($installbin, '.') && ($^O ne 'dos') && ! $Is_VMS) { | |
451 | my $archperl = "$perl_verbase$ver-$Config{archname}$exe_ext"; | |
452 | safe_unlink("$installbin/$archperl"); | |
eb96f679 PG |
453 | if ($^O eq 'mpeix') { |
454 | # MPE doesn't support hard links, so use a symlink. | |
f4a342c3 | 455 | # We don't want another cloned copy. |
2e2b85db | 456 | symlink($Config{perlpath}, "$installbin/$archperl"); |
eb96f679 PG |
457 | } elsif ($^O eq 'vos') { |
458 | # VOS doesn't support hard links, so use a symlink. | |
459 | symlink("$installbin/$perl_verbase$ver$exe_ext", | |
460 | "$installbin/$archperl"); | |
f4a342c3 | 461 | } else { |
2e2b85db | 462 | link("$installbin/$perl_verbase$ver$exe_ext", "$installbin/$archperl"); |
f4a342c3 JH |
463 | } |
464 | } | |
465 | ||
a0d0e21e LW |
466 | # Offer to install perl in a "standard" location |
467 | ||
c2cd2081 | 468 | my $mainperl_is_instperl = 0; |
a0d0e21e | 469 | |
a3ed4895 | 470 | if ($Config{installusrbinperl} && $Config{installusrbinperl} eq 'define' && |
68006eea | 471 | !$versiononly && !$opts{notify} && !$Is_W32 && !$Is_NetWare && !$Is_VMS && -t STDIN && -t STDERR |
68dc0745 | 472 | && -w $mainperldir && ! samepath($mainperldir, $installbin)) { |
c2cd2081 KS |
473 | my($usrbinperl) = "$mainperldir/$perl$exe_ext"; |
474 | my($instperl) = "$installbin/$perl$exe_ext"; | |
475 | my($expinstperl) = "$binexp/$perl$exe_ext"; | |
55497cff | 476 | |
477 | # First make sure $usrbinperl is not already the same as the perl we | |
478 | # just installed. | |
479 | if (-x $usrbinperl) { | |
a0d0e21e LW |
480 | # Try to be clever about mainperl being a symbolic link |
481 | # to binexp/perl if binexp and installbin are different. | |
482 | $mainperl_is_instperl = | |
68dc0745 | 483 | samepath($usrbinperl, $instperl) || |
484 | samepath($usrbinperl, $expinstperl) || | |
a0d0e21e | 485 | (($binexp ne $installbin) && |
55497cff | 486 | (-l $usrbinperl) && |
487 | ((readlink $usrbinperl) eq $expinstperl)); | |
a0d0e21e | 488 | } |
835f8a63 | 489 | if (! $mainperl_is_instperl) { |
55497cff | 490 | unlink($usrbinperl); |
1d84e8df JH |
491 | ( $Config{'d_link'} eq 'define' && |
492 | eval { CORE::link $instperl, $usrbinperl } ) || | |
493 | eval { symlink $expinstperl, $usrbinperl } || | |
494 | copy($instperl, $usrbinperl); | |
495 | ||
a0d0e21e LW |
496 | $mainperl_is_instperl = 1; |
497 | } | |
498 | } | |
499 | ||
b971f6e4 | 500 | # Make links to ordinary names if installbin directory isn't current directory. |
9edbfc61 | 501 | if (!$Is_NetWare && $dbg eq '') { |
bbd0f0ff RGS |
502 | if (! samepath($installbin, 'x2p')) { |
503 | my $base = 'a2p'; | |
504 | $base .= $ver if $versiononly; | |
505 | safe_unlink("$installbin/$base$exe_ext"); | |
506 | copy("x2p/a2p$exe_ext", "$installbin/$base$exe_ext"); | |
507 | strip("$installbin/$base$exe_ext"); | |
508 | chmod(0755, "$installbin/$base$exe_ext"); | |
509 | } | |
b971f6e4 | 510 | } |
511 | ||
512 | # cppstdin is just a script, but it is architecture-dependent, so | |
513 | # it can't safely be shared. Place it in $installbin. | |
514 | # Note that Configure doesn't build cppstin if it isn't needed, so | |
515 | # we skip this if cppstdin doesn't exist. | |
68dc0745 | 516 | if (! $versiononly && (-f 'cppstdin') && (! samepath($installbin, '.'))) { |
517 | safe_unlink("$installbin/cppstdin"); | |
518 | copy("cppstdin", "$installbin/cppstdin"); | |
519 | chmod(0755, "$installbin/cppstdin"); | |
b971f6e4 | 520 | } |
521 | ||
1a09d0c8 JH |
522 | sub script_alias { |
523 | my ($installscript, $orig, $alias, $scr_ext) = @_; | |
524 | ||
eea3e086 | 525 | safe_unlink("$installscript/$alias$scr_ext"); |
1a09d0c8 JH |
526 | if ($^O eq 'dos' or $Is_VMS or $^O eq 'transit') { |
527 | copy("$installscript/$orig$scr_ext", | |
0b3bfb33 | 528 | "$installscript/$alias$scr_ext"); |
7e6b8b1f PG |
529 | } elsif ($^O eq 'vos') { |
530 | symlink("$installscript/$orig$scr_ext", | |
2e2b85db | 531 | "$installscript/$alias$scr_ext"); |
1a09d0c8 JH |
532 | } else { |
533 | link("$installscript/$orig$scr_ext", | |
534 | "$installscript/$alias$scr_ext"); | |
535 | } | |
536 | } | |
537 | ||
c8f392da | 538 | # Install scripts. |
68006eea | 539 | mkpath($installscript, $opts{verbose}, 0777); |
c8f392da JH |
540 | if ($versiononly) { |
541 | for (@scripts) { | |
542 | (my $base = $_) =~ s#.*/##; | |
543 | $base .= $ver; | |
544 | copy($_, "$installscript/$base"); | |
545 | chmod(0755, "$installscript/$base"); | |
546 | } | |
b971f6e4 | 547 | |
0b3bfb33 | 548 | for (@tolink) { |
2e2b85db MB |
549 | my ($from, $to) = map { "$_$ver" } @$_; |
550 | (my $frbase = $from) =~ s#.*/##; | |
551 | (my $tobase = $to) =~ s#.*/##; | |
552 | script_alias($installscript, $frbase, $tobase, $scr_ext); | |
c8f392da JH |
553 | } |
554 | } else { | |
22e77942 JH |
555 | for (@scripts) { |
556 | (my $base = $_) =~ s#.*/##; | |
557 | copy($_, "$installscript/$base"); | |
558 | chmod(0755, "$installscript/$base"); | |
b971f6e4 | 559 | } |
22e77942 | 560 | |
0b3bfb33 | 561 | for (@tolink) { |
2e2b85db MB |
562 | my ($from, $to) = @$_; |
563 | (my $frbase = $from) =~ s#.*/##; | |
564 | (my $tobase = $to) =~ s#.*/##; | |
565 | script_alias($installscript, $frbase, $tobase, $scr_ext); | |
21dae8a0 | 566 | } |
b971f6e4 | 567 | } |
568 | ||
146174a9 CB |
569 | # Install pod pages. Where? I guess in $installprivlib/pod |
570 | # ($installprivlib/pods for cygwin). | |
b971f6e4 | 571 | |
e65df1b6 | 572 | my $pod = ($Is_Cygwin || $Is_Darwin || $Is_VMS || $Is_W32) ? 'pods' : 'pod'; |
7e73a980 | 573 | if ( !$versiononly || ($installprivlib =~ m/\Q$vershort/)) { |
68006eea | 574 | mkpath("${installprivlib}/$pod", $opts{verbose}, 0777); |
91a06757 CS |
575 | |
576 | # If Perl 5.003's perldiag.pod is there, rename it. | |
146174a9 | 577 | if (open POD, "${installprivlib}/$pod/perldiag.pod") { |
91a06757 CS |
578 | read POD, $_, 4000; |
579 | close POD; | |
580 | # Some of Perl 5.003's diagnostic messages ended with periods. | |
581 | if (/^=.*\.$/m) { | |
146174a9 CB |
582 | my ($from, $to) = ("${installprivlib}/$pod/perldiag.pod", |
583 | "${installprivlib}/$pod/perldiag-5.003.pod"); | |
f311e742 | 584 | print " rename $from $to"; |
91a06757 CS |
585 | rename($from, $to) |
586 | or warn "Couldn't rename $from to $to: $!\n" | |
68006eea | 587 | unless $opts{notify}; |
91a06757 CS |
588 | } |
589 | } | |
590 | ||
146174a9 CB |
591 | for (@pods) { |
592 | # $_ is a name like pod/perl.pod | |
2e2b85db | 593 | (my $base = $_) =~ s#.*/##; |
146174a9 | 594 | copy_if_diff($_, "${installprivlib}/$pod/${base}"); |
b971f6e4 | 595 | } |
91a06757 | 596 | |
b971f6e4 | 597 | } |
598 | ||
a0d0e21e LW |
599 | # Check to make sure there aren't other perls around in installer's |
600 | # path. This is probably UNIX-specific. Check all absolute directories | |
601 | # in the path except for where public executables are supposed to live. | |
602 | # Also skip $mainperl if the user opted to have it be a link to the | |
603 | # installed perl. | |
604 | ||
5f675712 | 605 | if (!$versiononly && $otherperls) { |
146174a9 | 606 | my ($path, @path); |
2986a63f | 607 | my $dirsep = ($Is_OS2 || $Is_W32 || $Is_NetWare) ? ';' : ':' ; |
b971f6e4 | 608 | ($path = $ENV{"PATH"}) =~ s:\\:/:g ; |
609 | @path = split(/$dirsep/, $path); | |
17f28c40 | 610 | if ($Is_VMS) { |
2e2b85db MB |
611 | my $i = 0; |
612 | while (exists $ENV{'DCL$PATH' . $i}) { | |
613 | my $dir = unixpath($ENV{'DCL$PATH' . $i}); $dir =~ s-/$--; | |
614 | push(@path,$dir); | |
615 | } | |
17f28c40 | 616 | } |
c2cd2081 | 617 | my @otherperls; |
160a7e37 | 618 | my %otherperls; |
b971f6e4 | 619 | for (@path) { |
620 | next unless m,^/,; | |
621 | # Use &samepath here because some systems have other dirs linked | |
622 | # to $mainperldir (like SunOS) | |
68dc0745 | 623 | next if samepath($_, $binexp); |
ebef0ab4 | 624 | next if samepath($_, cwd()); |
68dc0745 | 625 | next if ($mainperl_is_instperl && samepath($_, $mainperldir)); |
2e2b85db | 626 | my $otherperl = "$_/$perl$exe_ext"; |
160a7e37 HS |
627 | next if $otherperls{$otherperl}++; |
628 | push(@otherperls, $otherperl) | |
629 | if (-x $otherperl && ! -d $otherperl); | |
b971f6e4 | 630 | } |
631 | if (@otherperls) { | |
5f675712 | 632 | warn "\nWarning: $perl appears in your path in the following " . |
b971f6e4 | 633 | "locations beyond where\nwe just installed it:\n"; |
634 | for (@otherperls) { | |
5f675712 | 635 | warn " ", $_, "\n"; |
b971f6e4 | 636 | } |
5f675712 | 637 | warn "\n"; |
a0d0e21e | 638 | } |
b971f6e4 | 639 | |
a0d0e21e LW |
640 | } |
641 | ||
68006eea NC |
642 | $packlist->write() unless $opts{notify}; |
643 | print " Installation complete\n" if $opts{verbose}; | |
c623bd54 LW |
644 | |
645 | exit 0; | |
646 | ||
647 | ############################################################################### | |
648 | ||
a0d0e21e | 649 | sub yn { |
c2cd2081 KS |
650 | my($prompt) = @_; |
651 | my($answer); | |
652 | my($default) = $prompt =~ m/\[([yn])\]\s*$/i; | |
802cdca0 | 653 | print STDERR $prompt; |
a0d0e21e LW |
654 | chop($answer = <STDIN>); |
655 | $answer = $default if $answer =~ m/^\s*$/; | |
656 | ($answer =~ m/^[yY]/); | |
657 | } | |
658 | ||
c623bd54 | 659 | sub unlink { |
c2cd2081 | 660 | my(@names) = @_; |
39add537 | 661 | my($cnt) = 0; |
c623bd54 | 662 | |
17f28c40 CB |
663 | return scalar(@names) if $Is_VMS; |
664 | ||
c2cd2081 | 665 | foreach my $name (@names) { |
c623bd54 | 666 | next unless -e $name; |
2986a63f | 667 | chmod 0777, $name if ($Is_OS2 || $Is_W32 || $Is_Cygwin || $Is_NetWare); |
68006eea | 668 | print " unlink $name\n" if $opts{verbose}; |
0b3bfb33 | 669 | ( CORE::unlink($name) and ++$cnt |
68006eea | 670 | or warn "Couldn't unlink $name: $!\n" ) unless $opts{notify}; |
c623bd54 | 671 | } |
39add537 | 672 | return $cnt; |
c623bd54 LW |
673 | } |
674 | ||
e50aee73 | 675 | sub safe_unlink { |
68006eea | 676 | return if $opts{notify} or $Is_VMS; |
c2cd2081 KS |
677 | my @names = @_; |
678 | foreach my $name (@names) { | |
e50aee73 | 679 | next unless -e $name; |
2986a63f | 680 | chmod 0777, $name if ($Is_OS2 || $Is_W32 || $Is_NetWare); |
68006eea | 681 | print " unlink $name\n" if $opts{verbose}; |
39add537 | 682 | next if CORE::unlink($name); |
e50aee73 AD |
683 | warn "Couldn't unlink $name: $!\n"; |
684 | if ($! =~ /busy/i) { | |
68006eea | 685 | print " mv $name $name.old\n" if $opts{verbose}; |
68dc0745 | 686 | safe_rename($name, "$name.old") |
687 | or warn "Couldn't rename $name: $!\n"; | |
e50aee73 AD |
688 | } |
689 | } | |
690 | } | |
691 | ||
68dc0745 | 692 | sub safe_rename { |
c2cd2081 | 693 | my($from,$to) = @_; |
55a105fd | 694 | if (-f $to and not unlink($to)) { |
e50aee73 AD |
695 | my($i); |
696 | for ($i = 1; $i < 50; $i++) { | |
91a06757 | 697 | last if rename($to, "$to.$i"); |
e50aee73 | 698 | } |
0b3bfb33 | 699 | warn("Cannot rename to `$to.$i': $!"), return 0 |
39add537 | 700 | if $i >= 50; # Give up! |
e50aee73 AD |
701 | } |
702 | link($from,$to) || return 0; | |
55a105fd | 703 | unlink($from); |
e50aee73 AD |
704 | } |
705 | ||
c623bd54 | 706 | sub link { |
15792f64 | 707 | my($from,$to) = @_; |
708 | my($success) = 0; | |
c623bd54 | 709 | |
5a9231b0 | 710 | my $xfrom = $from; |
2227e2d5 | 711 | $xfrom =~ s/^\Q$opts{destdir}\E// if $opts{destdir}; |
5a9231b0 | 712 | my $xto = $to; |
2227e2d5 | 713 | $xto =~ s/^\Q$opts{destdir}\E// if $opts{destdir}; |
68006eea NC |
714 | print $opts{verbose} ? " ln $xfrom $xto\n" : " $xto\n" |
715 | unless $opts{silent}; | |
39add537 | 716 | eval { |
68dc0745 | 717 | CORE::link($from, $to) |
718 | ? $success++ | |
7bac28a0 | 719 | : ($from =~ m#^/afs/# || $to =~ m#^/afs/#) |
720 | ? die "AFS" # okay inside eval {} | |
146174a9 | 721 | : die "Couldn't link $from to $to: $!\n" |
68006eea | 722 | unless $opts{notify}; |
5a9231b0 | 723 | $packlist->{$xto} = { from => $xfrom, type => 'link' }; |
39add537 | 724 | }; |
725 | if ($@) { | |
6c9f5ae6 | 726 | warn "Replacing link() with File::Copy::copy(): $@"; |
68006eea NC |
727 | print $opts{verbose} ? " cp $from $xto\n" : " $xto\n" |
728 | unless $opts{silent}; | |
5a9231b0 | 729 | print " creating new version of $xto\n" |
68006eea NC |
730 | if $Is_VMS and -e $to and !$opts{silent}; |
731 | unless ($opts{notify} or File::Copy::copy($from, $to) and ++$success) { | |
6c9f5ae6 IZ |
732 | # Might have been that F::C::c can't overwrite the target |
733 | warn "Couldn't copy $from to $to: $!\n" | |
734 | unless -f $to and (chmod(0666, $to), unlink $to) | |
735 | and File::Copy::copy($from, $to) and ++$success; | |
736 | } | |
5a9231b0 | 737 | $packlist->{$xto} = { type => 'file' }; |
39add537 | 738 | } |
15792f64 | 739 | $success; |
c623bd54 LW |
740 | } |
741 | ||
742 | sub chmod { | |
c2cd2081 | 743 | my($mode,$name) = @_; |
c623bd54 | 744 | |
39e571d4 | 745 | return if ($^O eq 'dos'); |
68006eea | 746 | printf " chmod %o %s\n", $mode, $name if $opts{verbose}; |
68dc0745 | 747 | CORE::chmod($mode,$name) |
748 | || warn sprintf("Couldn't chmod %o %s: $!\n", $mode, $name) | |
68006eea | 749 | unless $opts{notify}; |
68dc0745 | 750 | } |
751 | ||
752 | sub copy { | |
753 | my($from,$to) = @_; | |
754 | ||
5a9231b0 | 755 | my $xto = $to; |
2227e2d5 | 756 | $xto =~ s/^\Q$opts{destdir}\E// if $opts{destdir}; |
68006eea NC |
757 | print $opts{verbose} ? " cp $from $xto\n" : " $xto\n" |
758 | unless $opts{silent}; | |
759 | print " creating new version of $xto\n" | |
760 | if $Is_VMS and -e $to and !$opts{silent}; | |
761 | unless ($opts{notify} or File::Copy::copy($from, $to)) { | |
6c9f5ae6 IZ |
762 | # Might have been that F::C::c can't overwrite the target |
763 | warn "Couldn't copy $from to $to: $!\n" | |
764 | unless -f $to and (chmod(0666, $to), unlink $to) | |
765 | and File::Copy::copy($from, $to); | |
766 | } | |
5a9231b0 | 767 | $packlist->{$xto} = { type => 'file' }; |
c623bd54 LW |
768 | } |
769 | ||
a0d0e21e | 770 | sub samepath { |
c2cd2081 | 771 | my($p1, $p2) = @_; |
eef1cf2a | 772 | |
2986a63f | 773 | return (lc($p1) eq lc($p2)) if ($Is_W32 || $Is_NetWare); |
a0d0e21e | 774 | |
75f92628 | 775 | if ($p1 ne $p2) { |
c2cd2081 | 776 | my($dev1, $ino1, $dev2, $ino2); |
a0d0e21e LW |
777 | ($dev1, $ino1) = stat($p1); |
778 | ($dev2, $ino2) = stat($p2); | |
779 | ($dev1 == $dev2 && $ino1 == $ino2); | |
780 | } | |
781 | else { | |
782 | 1; | |
783 | } | |
784 | } | |
785 | ||
786 | sub installlib { | |
787 | my $dir = $File::Find::dir; | |
788 | $dir =~ s#^\.(?![^/])/?##; | |
0ecb046b | 789 | local($depth) = $dir ? "lib/$dir" : "lib"; |
a0d0e21e LW |
790 | |
791 | my $name = $_; | |
efc5ad56 | 792 | |
ce28de53 | 793 | # Ignore version control directories. |
559940b2 | 794 | if ($name =~ /^(?:CVS|RCS|SCCS|\.svn)\z/ and -d $name) { |
efc5ad56 TB |
795 | $File::Find::prune = 1; |
796 | return; | |
797 | } | |
0b3bfb33 | 798 | |
146174a9 | 799 | # ignore patch backups, RCS files, emacs backup & temp files and the |
056a8fbe | 800 | # .exists files, .PL files, and test files. |
f7388fd6 | 801 | return if $name =~ m{\.orig$|\.rej$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.plc$|\.t$|^test\.pl$|^dbm_filter_util.pl$} || |
2e2b85db | 802 | $dir =~ m{/t(?:/|$)}; |
e4fc8a1e | 803 | # ignore the cpan script in lib/CPAN/bin, the instmodsh and xsubpp |
04f9cde5 | 804 | # scripts in lib/ExtUtils, the prove script in lib/Test/Harness, |
ca32a3cb | 805 | # the corelist script from lib/Module/CoreList/bin and ptar* in |
bb4e9162 | 806 | # lib/Archive/Tar/bin, the config_data script in lib/Module/Build/scripts |
e4fc8a1e | 807 | # (they're installed later with other utils) |
6aaee015 | 808 | return if $name =~ /^(?:cpan|instmodsh|prove|corelist|ptar|cpan2dist|cpanp|cpanp-run-perl|ptardiff|config_data)\z/; |
922ef74c RGS |
809 | # ignore the Makefiles |
810 | return if $name =~ /^makefile$/i; | |
f9aa124c | 811 | # ignore the test extensions |
f631d084 RGS |
812 | return if $dir =~ m{\bXS/(?:APItest|Typemap)\b}; |
813 | return if $name =~ m{\b(?:APItest|Typemap)\.pm$}; | |
a6c3b020 | 814 | # ignore the demo files |
021db424 | 815 | return if $dir =~ /\b(?:demos?|eg)\b/; |
b695f709 | 816 | |
0ae089ad MS |
817 | # ignore READMEs, MANIFESTs, INSTALL docs, META.ymls and change logs. |
818 | # Changes.e2x and README.e2x are needed by enc2xs. | |
ae5e75fd | 819 | return if $name =~ m{^(?:README(?:\.\w+)?)$} && $name ne 'README.e2x'; |
021db424 JH |
820 | return if $name =~ m{^(?:MANIFEST|META\.yml)$}; |
821 | return if $name =~ m{^(?:INSTALL|TODO|BUGS|CREDITS)$}i; | |
0ae089ad | 822 | return if $name =~ m{^change(?:s|log)(?:\.libnet)?$}i; |
021db424 JH |
823 | return if $name =~ m{^(?:SIGNATURE|PAUSE200\d\.pub)$}; # CPAN files |
824 | return if $name =~ m{^(?:NOTES|PATCHING)$}; # ExtUtils files | |
0ae089ad | 825 | |
54f1e9b4 SH |
826 | # if using a shared perl library then ignore: |
827 | # - static library files [of statically linked extensions]; | |
828 | # - import library files and export library files (only present on Win32 | |
829 | # anyway?) and empty bootstrap files [of dynamically linked extensions]. | |
830 | return if $Config{useshrplib} eq 'true' and | |
831 | ($name =~ /$Config{_a}$/ or $name =~ /\.exp$/ or ($name =~ /\.bs$/ and -z $name)); | |
832 | ||
a0d0e21e LW |
833 | $name = "$dir/$name" if $dir ne ''; |
834 | ||
835 | my $installlib = $installprivlib; | |
1dd15ed4 | 836 | if ($dir =~ /^auto/ || |
eef1cf2a | 837 | ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) || |
b809f04e NC |
838 | ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) || |
839 | $name eq 'Config_heavy.pl' | |
eef1cf2a | 840 | ) { |
2e2b85db | 841 | $installlib = $installarchlib; |
a0d0e21e LW |
842 | return unless $do_installarchlib; |
843 | } else { | |
844 | return unless $do_installprivlib; | |
845 | } | |
846 | ||
a0d0e21e | 847 | if (-f $_) { |
1a959400 | 848 | if (/\.(?:al|ix)$/ && !($dir =~ m[^auto/(.*)$])) { |
3edbfbe5 TB |
849 | $installlib = $installprivlib; |
850 | #We're installing *.al and *.ix files into $installprivlib, | |
851 | #but we have to delete old *.al and *.ix files from the 5.000 | |
852 | #distribution: | |
75f92628 | 853 | #This might not work because $archname might have changed. |
55a105fd | 854 | unlink("$installarchlib/$name"); |
3edbfbe5 | 855 | } |
5a9231b0 | 856 | my $xname = "$installlib/$name"; |
2227e2d5 | 857 | $xname =~ s/^\Q$opts{destdir}\E// if $opts{destdir}; |
5a9231b0 | 858 | $packlist->{$xname} = { type => 'file' }; |
68006eea | 859 | if ($force || compare($_, "$installlib/$name") || $opts{notify}) { |
55a105fd | 860 | unlink("$installlib/$name"); |
68006eea | 861 | mkpath("$installlib/$dir", $opts{verbose}, 0777); |
75f92628 AD |
862 | # HP-UX (at least) needs to maintain execute permissions |
863 | # on dynamically-loaded libraries. | |
2e2b85db MB |
864 | if ($Is_NetWare && !$nwinstall) { |
865 | # Don't copy .nlp,.nlm files, doesn't make sense on Windows and also | |
866 | # if copied will give problems when building new extensions. | |
867 | # Has to be copied if we are installing on a NetWare server and hence | |
868 | # the check !$nwinstall | |
869 | if (!(/\.(?:nlp|nlm|bs)$/)) { | |
870 | copy_if_diff($_, "$installlib/$name") | |
2986a63f | 871 | and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, |
2e2b85db MB |
872 | "$installlib/$name"); |
873 | } | |
874 | } else { | |
875 | if (copy_if_diff($_, "$installlib/$name")) { | |
876 | if ($name =~ /\.(so|$dlext)$/o) { | |
877 | strip("-S", "$installlib/$name") if $^O =~ /^(rhapsody|darwin)$/; | |
878 | chmod(0555, "$installlib/$name"); | |
879 | } else { | |
880 | strip("-S", "$installlib/$name") | |
881 | if ($name =~ /\.a$/o and $^O =~ /^(rhapsody|darwin)$/); | |
882 | chmod(0444, "$installlib/$name"); | |
883 | } | |
884 | } | |
885 | } #if ($Is_NetWare) | |
a0d0e21e | 886 | } |
a0d0e21e LW |
887 | } |
888 | } | |
3edbfbe5 | 889 | |
16d20bd9 AD |
890 | # Copy $from to $to, only if $from is different than $to. |
891 | # Also preserve modification times for .a libraries. | |
892 | # On some systems, if you do | |
893 | # ranlib libperl.a | |
894 | # cp libperl.a /usr/local/lib/perl5/archlib/CORE/libperl.a | |
895 | # and then try to link against the installed libperl.a, you might | |
896 | # get an error message to the effect that the symbol table is older | |
897 | # than the library. | |
aa3cf465 | 898 | # Return true if copying occurred. |
68dc0745 | 899 | |
900 | sub copy_if_diff { | |
3edbfbe5 | 901 | my($from,$to)=@_; |
8530e788 | 902 | return 1 if (($^O eq 'VMS') && (-d $from)); |
5a9231b0 | 903 | my $xto = $to; |
2227e2d5 | 904 | $xto =~ s/^\Q$opts{destdir}\E// if $opts{destdir}; |
5f239f73 JH |
905 | my $perlpodbadsymlink; |
906 | if ($from =~ m!^pod/perl[\w-]+\.pod$! && | |
907 | -l $from && | |
908 | ! -e $from) { | |
909 | # Some Linux implementations have problems traversing over | |
910 | # multiple symlinks (when going over NFS?) and fail to read | |
911 | # the symlink target. Combine this with the fact that some | |
912 | # of the pod files (the perl$OS.pod) are symlinks (to ../README.$OS), | |
913 | # and you end up with those pods not getting installed. | |
914 | $perlpodbadsymlink = 1; | |
915 | } | |
916 | -f $from || $perlpodbadsymlink || warn "$0: $from not found"; | |
5a9231b0 | 917 | $packlist->{$xto} = { type => 'file' }; |
68006eea | 918 | if ($force || compare($from, $to) || $opts{notify}) { |
68dc0745 | 919 | safe_unlink($to); # In case we don't have write permissions. |
68006eea | 920 | if ($opts{notify}) { |
2e2b85db MB |
921 | $from = $depth . "/" . $from if $depth; |
922 | } | |
5f239f73 JH |
923 | if ($perlpodbadsymlink && $from =~ m!^pod/perl(.+)\.pod$!) { |
924 | $from = "README.$1"; | |
925 | } | |
68dc0745 | 926 | copy($from, $to); |
927 | # Restore timestamps if it's a .a library or for OS/2. | |
68006eea | 928 | if (!$opts{notify} && ($Is_OS2 || $to =~ /\.a$/)) { |
68dc0745 | 929 | my ($atime, $mtime) = (stat $from)[8,9]; |
16d20bd9 AD |
930 | utime $atime, $mtime, $to; |
931 | } | |
aa3cf465 | 932 | 1; |
3edbfbe5 TB |
933 | } |
934 | } | |
8f1f23e8 W |
935 | |
936 | sub strip | |
937 | { | |
938 | my(@args) = @_; | |
939 | ||
f556e5b9 JH |
940 | return unless $dostrip; |
941 | ||
8f1f23e8 W |
942 | my @opts; |
943 | while (@args && $args[0] =~ /^(-\w+)$/) { | |
2e2b85db | 944 | push @opts, shift @args; |
8f1f23e8 W |
945 | } |
946 | ||
947 | foreach my $file (@args) { | |
2e2b85db | 948 | if (-f $file) { |
68006eea | 949 | if ($opts{verbose}) { |
2e2b85db MB |
950 | print " strip " . join(' ', @opts); |
951 | print " " if (@opts); | |
952 | print "$file\n"; | |
953 | } | |
954 | system("strip", @opts, $file); | |
955 | } else { | |
68006eea | 956 | print "# file '$file' skipped\n" if $opts{verbose}; |
2e2b85db | 957 | } |
8f1f23e8 W |
958 | } |
959 | } |