X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=installperl;h=e775c9c9788400f989cd5c04f45006612b774536;hb=890ed176d1ab1cf305ce9634210857cfed305fff;hp=b7df66f5c9522b2eb7c0394dbb17f9a664eb44f5;hpb=791b4ad3d4885818274b272624d60d233f36ad2d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/installperl b/installperl index b7df66f..e775c9c 100755 --- a/installperl +++ b/installperl @@ -8,8 +8,9 @@ BEGIN { } use strict; -my ($Is_VMS, $Is_W32, $Is_OS2, $Is_Cygwin, $nonono, $dostrip, - $versiononly, $silent, $verbose, $otherperls, $archname,$Is_NetWare, $nwinstall); +my ($Is_VMS, $Is_W32, $Is_OS2, $Is_Cygwin, $Is_Darwin, + $nonono, $dostrip, $versiononly, $silent, $verbose, $force, + $otherperls, $archname, $Is_NetWare, $nwinstall, $nopods); use vars qw /$depth/; BEGIN { @@ -17,6 +18,7 @@ BEGIN { $Is_W32 = $^O eq 'MSWin32'; $Is_OS2 = $^O eq 'os2'; $Is_Cygwin = $^O eq 'cygwin'; + $Is_Darwin = $^O eq 'darwin'; if ($Is_VMS) { eval 'use VMS::Filespec;' } } @@ -36,8 +38,8 @@ if ($Config{d_umask}) { $Is_NetWare = $Config{osname} eq 'NetWare'; if ($Is_NetWare) { - $Is_W32 = 0; - $scr_ext = '.pl'; + $Is_W32 = 0; + $scr_ext = '.pl'; } # override the ones in the rest of the script @@ -67,9 +69,31 @@ while (@ARGV) { $versiononly = 0 if $ARGV[0] eq '+v'; $silent = 1 if $ARGV[0] eq '-S'; $otherperls = 0 if $ARGV[0] eq '-o'; + $force = 1 if $ARGV[0] eq '-f'; $verbose = 1 if $ARGV[0] eq '-V' || $ARGV [0] eq '-n'; $archname = 1 if $ARGV[0] eq '-A'; - $nwinstall = 1 if $ARGV[0] eq '-netware'; + $nwinstall = 1 if $ARGV[0] eq '-netware'; + $nopods = 1 if $ARGV[0] eq '-p'; + if ($ARGV[0] eq '-?' or $ARGV[0] =~ /^-?-h/) { + print <<"EOT"; +Usage $0: [switches] + -n Don't actually run any commands; just print them. + -s Run strip on installed binaries. + -v Only install perl as a binary with the version number in the name. + (Override whatever config.sh says) + +v Install perl as "perl" and as a binary with the version number in + the name. (Override whatever config.sh says) + -S Silent mode. + -f Force installation (don't check if same version is there) + -o Skip checking for other copies of perl in your PATH. + -V Verbose mode. + -A Also install perl with the architecture's name in the perl binary's + name. + -p Don't install the pod files. [This will break use diagnostics;] + -netware Install correctly on a Netware server. +EOT + exit; + } shift; } @@ -81,27 +105,28 @@ while () { next if /#\s*pod\s*=/; # Binary programs need separate treatment chomp; if (/(\S*)\s*#\s*link\s*=\s*(\S*)/) { - push @scripts, $1; - push @tolink, [$1, $2]; + push @scripts, $1; + push @tolink, [$1, $2]; } else { - push @scripts, $_; + push @scripts, $_; } } close SCRIPTS; if ($scr_ext) { @scripts = map { "$_$scr_ext" } @scripts; } -my @pods = (); +my @pods = $nopods ? () : (); # Specify here any .pm files that are actually architecture-dependent. # (Those included with XS extensions under ext/ are automatically # added later.) # Now that the default privlib has the full perl version number included, -# we no longer have to play the trick of sticking version-specific .pm +# we no longer have to play the trick of sticking version-specific .pm # files under the archlib directory. my %archpms = ( - Config => 1, - lib => 1, + Config => 1, + lib => 1, + Cwd => 1, ); if ($^O eq 'dos') { @@ -109,31 +134,30 @@ if ($^O eq 'dos') { $archpms{config} = $archpms{filehand} = 1; } -if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) -{ - push(@scripts, map("$_.exe", @scripts)); +if ((-e "testcompile") && (defined($ENV{'COMPILE'}))) { + push(@scripts, map("$_.exe", @scripts)); } find(sub { - if ("$File::Find::dir/$_" =~ m{^ext\b(.*)/([^/]+)\.pm$}) { - my($path, $modname) = ($1,$2); + if ("$File::Find::dir/$_" =~ m{^ext\b(.*)/([^/]+)\.pm$}) { + my($path, $modname) = ($1,$2); - # strip trailing component first - $path =~ s{/[^/]*$}{}; + # strip trailing component first + $path =~ s{/[^/]*$}{}; - # strip optional "/lib"; - $path =~ s{/lib\b}{}; + # strip optional "/lib"; + $path =~ s{/lib\b}{}; - # strip any leading / - $path =~ s{^/}{}; + # strip any leading / + $path =~ s{^/}{}; - # reconstitute canonical module name - $modname = "$path/$modname" if length $path; + # reconstitute canonical module name + $modname = "$path/$modname" if length $path; - # remember it - $archpms{$modname} = 1; - } - }, 'ext'); + # remember it + $archpms{$modname} = 1; + } +}, 'ext'); # print "[$_]\n" for sort keys %archpms; @@ -164,16 +188,16 @@ if ($^O eq 'os390') { my $archlibexp = $Config{archlibexp}; my $usedl = $Config{usedl}; if ($usedl eq 'define') { - `./$^X -pibak -e 's{$pwd\/libperl.x}{$archlibexp/CORE/libperl.x}' lib/Config.pm`; + `./$^X -pibak -e 's{$pwd\/libperl.x}{$archlibexp/CORE/libperl.x}' lib/Config.pm`; } } if ($nwinstall) { - # This is required only if we are installing on a NetWare server - $installscript = $Config{installnwscripts}; - $installprivlib = $Config{installnwlib}; - $installarchlib = $Config{installnwlib}; - $installsitelib = $Config{installnwlib}; + # This is required only if we are installing on a NetWare server + $installscript = $Config{installnwscripts}; + $installprivlib = $Config{installnwlib}; + $installarchlib = $Config{installnwlib}; + $installsitelib = $Config{installnwlib}; } my $d_dosuid = $Config{d_dosuid}; @@ -181,9 +205,9 @@ my $binexp = $Config{binexp}; if ($Is_VMS) { # Hang in there until File::Spec hits the big time foreach ( \$installbin, \$installscript, \$installprivlib, - \$installarchlib, \$installsitelib, \$installsitearch, - \$installman1dir ) { - $$_ = unixify($$_); $$_ =~ s:/$::; + \$installarchlib, \$installsitelib, \$installsitearch, + \$installman1dir ) { + $$_ = unixify($$_); $$_ =~ s:/$::; } } @@ -202,37 +226,60 @@ if (!$Is_NetWare) { -x 'suidperl' . $exe_ext|| die "suidperl isn't executable!\n" if $d_dosuid; -f 't/rantests' || $Is_W32 - || warn "WARNING: You've never run 'make test' or", - " some tests failed! (Installing anyway.)\n"; + || warn "WARNING: You've never run 'make test' or", + " some tests failed! (Installing anyway.)\n"; } #if (!$Is_NetWare) -if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) { - my $perldll; - - if ($Is_Cygwin) { - $perldll = $libperl; - $perldll =~ s/(\..*)?$/.$dlext/; - if ($Config{useshrplib} eq 'true') { - # install ld2 and perlld as well - foreach ('ld2', 'perlld') { - safe_unlink("$installbin/$_"); - copy("$_", "$installbin/$_"); - chmod(0755, "$installbin/$_"); - }; - }; - } else { - $perldll = 'perl57.' . $dlext; - } - - if ($dlsrc ne "dl_none.xs") { - -f $perldll || die "No perl DLL built\n"; - } - # Install the DLL - - safe_unlink("$installbin/$perldll"); - copy("$perldll", "$installbin/$perldll"); - chmod(0755, "$installbin/$perldll"); - +if (($Is_W32 and ! $Is_NetWare) or $Is_Cygwin) { + my $perldll; + + if ($Is_Cygwin) { + $perldll = $libperl; + my $v_e_r_s = $ver; $v_e_r_s =~ tr/./_/; + $perldll =~ s/(\..*)?$/$v_e_r_s.$dlext/; + $perldll =~ s/^lib/cyg/; + if ($Config{useshrplib} eq 'true') { + # install ld2 and perlld as well + foreach ('ld2', 'perlld') { + safe_unlink("$installbin/$_"); + copy("$_", "$installbin/$_"); + chmod(0755, "$installbin/$_"); + }; + open (LD2, ">$installbin/ld2"); + print LD2 <= 50; # Give up! } link($from,$to) || return 0; @@ -631,18 +687,18 @@ sub link { ? die "AFS" # okay inside eval {} : die "Couldn't link $from to $to: $!\n" unless $nonono; - $packlist->{$to} = { from => $from, type => 'link' }; + $packlist->{$to} = { from => $from, type => 'link' }; }; if ($@) { warn $@; - print $verbose ? " cp $from $to\n" : " $to\n" unless $silent; + print $verbose ? " cp $from $to\n" : " $to\n" unless $silent; print " creating new version of $to\n" - if $Is_VMS and -e $to and !$silent; + if $Is_VMS and -e $to and !$silent; File::Copy::copy($from, $to) ? $success++ : warn "Couldn't copy $from to $to: $!\n" unless $nonono; - $packlist->{$to} = { type => 'file' }; + $packlist->{$to} = { type => 'file' }; } $success; } @@ -696,10 +752,13 @@ sub installlib { $File::Find::prune = 1; return; } - + # ignore patch backups, RCS files, emacs backup & temp files and the # .exists files, .PL files, and .t files. - return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$}; + return if $name =~ m{\.orig$|~$|^#.+#$|,v$|^\.exists|\.PL$|\.t$} || + $dir =~ m{/t(?:/|$)}; + # ignore the test extensions + return if $dir =~ m{ext/XS/(?:APItest|Typemap)/}; $name = "$dir/$name" if $dir ne ''; @@ -708,7 +767,7 @@ sub installlib { ($name =~ /^(.*)\.(?:pm|pod)$/ && $archpms{$1}) || ($name =~ /^(.*)\.(?:h|lib)$/i && ($Is_W32 || $Is_NetWare)) ) { - $installlib = $installarchlib; + $installlib = $installarchlib; return unless $do_installarchlib; } else { return unless $do_installprivlib; @@ -723,27 +782,34 @@ sub installlib { #This might not work because $archname might have changed. unlink("$installarchlib/$name"); } - $packlist->{"$installlib/$name"} = { type => 'file' }; - if (compare($_, "$installlib/$name") || $nonono) { + $packlist->{"$installlib/$name"} = { type => 'file' }; + if ($force || compare($_, "$installlib/$name") || $nonono) { unlink("$installlib/$name"); mkpath("$installlib/$dir", $verbose, 0777); # HP-UX (at least) needs to maintain execute permissions # on dynamically-loaded libraries. - if ($Is_NetWare && !$nwinstall) { - # Don't copy .nlp,.nlm files, doesn't make sense on Windows and also - # if copied will give problems when building new extensions. - # Has to be copied if we are installing on a NetWare server and hence - # the check !$nwinstall - if (!(/\.(?:nlp|nlm|bs)$/)) { - copy_if_diff($_, "$installlib/$name") - and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, - "$installlib/$name"); - } - } else { - copy_if_diff($_, "$installlib/$name") + if ($Is_NetWare && !$nwinstall) { + # Don't copy .nlp,.nlm files, doesn't make sense on Windows and also + # if copied will give problems when building new extensions. + # Has to be copied if we are installing on a NetWare server and hence + # the check !$nwinstall + if (!(/\.(?:nlp|nlm|bs)$/)) { + copy_if_diff($_, "$installlib/$name") and chmod($name =~ /\.(so|$dlext)$/o ? 0555 : 0444, - "$installlib/$name"); - } #if ($Is_NetWare) + "$installlib/$name"); + } + } else { + if (copy_if_diff($_, "$installlib/$name")) { + if ($name =~ /\.(so|$dlext)$/o) { + strip("-S", "$installlib/$name") if $^O =~ /^(rhapsody|darwin)$/; + chmod(0555, "$installlib/$name"); + } else { + strip("-S", "$installlib/$name") + if ($name =~ /\.a$/o and $^O =~ /^(rhapsody|darwin)$/); + chmod(0444, "$installlib/$name"); + } + } + } #if ($Is_NetWare) } } } @@ -761,13 +827,27 @@ sub installlib { sub copy_if_diff { my($from,$to)=@_; return 1 if (($^O eq 'VMS') && (-d $from)); - -f $from || warn "$0: $from not found"; + my $perlpodbadsymlink; + if ($from =~ m!^pod/perl[\w-]+\.pod$! && + -l $from && + ! -e $from) { + # Some Linux implementations have problems traversing over + # multiple symlinks (when going over NFS?) and fail to read + # the symlink target. Combine this with the fact that some + # of the pod files (the perl$OS.pod) are symlinks (to ../README.$OS), + # and you end up with those pods not getting installed. + $perlpodbadsymlink = 1; + } + -f $from || $perlpodbadsymlink || warn "$0: $from not found"; $packlist->{$to} = { type => 'file' }; - if (compare($from, $to) || $nonono) { + if ($force || compare($from, $to) || $nonono) { safe_unlink($to); # In case we don't have write permissions. - if ($nonono) { - $from = $depth . "/" . $from if $depth; - } + if ($nonono) { + $from = $depth . "/" . $from if $depth; + } + if ($perlpodbadsymlink && $from =~ m!^pod/perl(.+)\.pod$!) { + $from = "README.$1"; + } copy($from, $to); # Restore timestamps if it's a .a library or for OS/2. if (!$nonono && ($Is_OS2 || $to =~ /\.a$/)) { @@ -786,16 +866,19 @@ sub strip my @opts; while (@args && $args[0] =~ /^(-\w+)$/) { - push @opts, shift @args; + push @opts, shift @args; } foreach my $file (@args) { - if (-f $file) { - print " strip $file\n" if $verbose; - system("strip", @opts, $file); - } else { - print "# file '$file' skipped\n" if $verbose; - } + if (-f $file) { + if ($verbose) { + print " strip " . join(' ', @opts); + print " " if (@opts); + print "$file\n"; + } + system("strip", @opts, $file); + } else { + print "# file '$file' skipped\n" if $verbose; + } } } -