diff options
author | Karl Berry <karl@freefriends.org> | 2016-04-05 22:27:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-04-05 22:27:26 +0000 |
commit | b56b320b5e2515160073fa1b469514002688fe11 (patch) | |
tree | 965a7100c5e45fca8ec803d22b8b6ce14fca4633 /Master/tlpkg/tlperl/lib/ExtUtils/CBuilder | |
parent | d26c206452d2e285c3bbf949f34011e4a55fd8f9 (diff) |
tlperl 5.22.1 from siep
git-svn-id: svn://tug.org/texlive/trunk@40252 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlperl/lib/ExtUtils/CBuilder')
13 files changed, 25 insertions, 49 deletions
diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm index 4392b7f5dbb..7df61e4c54b 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Base.pm @@ -1,5 +1,5 @@ package ExtUtils::CBuilder::Base; - +$ExtUtils::CBuilder::Base::VERSION = '0.280221'; use strict; use File::Spec; use File::Basename; @@ -9,9 +9,6 @@ use Text::ParseWords; use IPC::Cmd qw(can_run); use File::Temp qw(tempfile); -use vars qw($VERSION); -$VERSION = '0.280217'; - # More details about C/C++ compilers: # http://developers.sun.com/sunstudio/documentation/product/compiler.jsp # http://gcc.gnu.org/ diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm index d948bbfecb0..a05ae4bca6f 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Unix.pm @@ -1,10 +1,9 @@ package ExtUtils::CBuilder::Platform::Unix; - +$ExtUtils::CBuilder::Platform::Unix::VERSION = '0.280221'; use strict; use ExtUtils::CBuilder::Base; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Base); sub link_executable { diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm index d296bab51c1..6285e33692d 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/VMS.pm @@ -1,10 +1,9 @@ package ExtUtils::CBuilder::Platform::VMS; - +$ExtUtils::CBuilder::Platform::VMS::VERSION = '0.280221'; use strict; use ExtUtils::CBuilder::Base; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Base); use File::Spec::Functions qw(catfile catdir); @@ -166,7 +165,6 @@ sub _liblist_ext { 'socket' => '', 'X11' => 'DECW$XLIBSHR', 'Xt' => 'DECW$XTSHR', 'Xm' => 'DECW$XMLIBSHR', 'Xmu' => 'DECW$XMULIBSHR'); - if ($self->{'config'}{'vms_cc_type'} ne 'decc') { $libmap{'curses'} = 'VAXCCURSE'; } warn "Potential libraries are '$potential_libs'\n" if $verbose; @@ -267,9 +265,7 @@ sub _liblist_ext { } } if ($ctype) { - # This has to precede any other CRTLs, so just make it first - if ($cand eq 'VAXCCURSE') { unshift @{$found{$ctype}}, $cand; } - else { push @{$found{$ctype}}, $cand; } + push @{$found{$ctype}}, $cand; warn "\tFound as $cand (really $fullname), type $ctype\n" if $verbose > 1; push @flibs, $name unless $libs_seen{$fullname}++; diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm index f9e4070b965..472c8012da3 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows.pm @@ -1,5 +1,5 @@ package ExtUtils::CBuilder::Platform::Windows; - +$ExtUtils::CBuilder::Platform::Windows::VERSION = '0.280221'; use strict; use warnings; @@ -9,8 +9,7 @@ use File::Spec; use ExtUtils::CBuilder::Base; use IO::File; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Base); =begin comment diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm index aab143791f0..cbba074146a 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/BCC.pm @@ -1,8 +1,5 @@ package ExtUtils::CBuilder::Platform::Windows::BCC; - -use vars qw($VERSION); -$VERSION = '0.280217'; - +$ExtUtils::CBuilder::Platform::Windows::BCC::VERSION = '0.280220'; sub format_compiler_cmd { my ($self, %spec) = @_; @@ -64,7 +61,7 @@ sub format_linker_cmd { } push( @{$spec{startup}}, 'c0d32.obj' ) - unless ( $spec{starup} && @{$spec{startup}} ); + unless ( $spec{startup} && @{$spec{startup}} ); %spec = $self->write_linker_script(%spec) if $spec{use_scripts}; diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm index b8a32a873ac..eb37a0e1711 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/GCC.pm @@ -1,8 +1,5 @@ package ExtUtils::CBuilder::Platform::Windows::GCC; - -use vars qw($VERSION); -$VERSION = '0.280217'; - +$ExtUtils::CBuilder::Platform::Windows::GCC::VERSION = '0.280220'; sub format_compiler_cmd { my ($self, %spec) = @_; diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm index 3d4b5abc881..8457485e22f 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/Windows/MSVC.pm @@ -1,8 +1,5 @@ package ExtUtils::CBuilder::Platform::Windows::MSVC; - -use vars qw($VERSION); -$VERSION = '0.280217'; - +$ExtUtils::CBuilder::Platform::Windows::MSVC::VERSION = '0.280220'; sub arg_exec_file { my ($self, $file) = @_; return "/OUT:$file"; diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm index ecc14f89e27..c40dfaa5f46 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/aix.pm @@ -1,11 +1,10 @@ package ExtUtils::CBuilder::Platform::aix; - +$ExtUtils::CBuilder::Platform::aix::VERSION = '0.280221'; use strict; use ExtUtils::CBuilder::Platform::Unix; use File::Spec; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); sub need_prelink { 1 } diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm index e2be516d2ca..8ceb1454d6d 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/android.pm @@ -1,12 +1,11 @@ package ExtUtils::CBuilder::Platform::android; - +$ExtUtils::CBuilder::Platform::android::VERSION = '0.280221'; use strict; -use Config; use File::Spec; use ExtUtils::CBuilder::Platform::Unix; +use Config; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); # The Android linker will not recognize symbols from diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm index 43e6a47b6bd..9f1e7fea397 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/cygwin.pm @@ -1,11 +1,10 @@ package ExtUtils::CBuilder::Platform::cygwin; - +$ExtUtils::CBuilder::Platform::cygwin::VERSION = '0.280221'; use strict; use File::Spec; use ExtUtils::CBuilder::Platform::Unix; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); # TODO: If a specific exe_file name is requested, if the exe created diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm index bc4f1884968..391040bb934 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/darwin.pm @@ -1,10 +1,9 @@ package ExtUtils::CBuilder::Platform::darwin; - +$ExtUtils::CBuilder::Platform::darwin::VERSION = '0.280221'; use strict; use ExtUtils::CBuilder::Platform::Unix; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); sub compile { diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm index f16fc019d59..5d4bdf78b13 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/dec_osf.pm @@ -1,12 +1,11 @@ package ExtUtils::CBuilder::Platform::dec_osf; - +$ExtUtils::CBuilder::Platform::dec_osf::VERSION = '0.280221'; use strict; use ExtUtils::CBuilder::Platform::Unix; use File::Spec; -use vars qw($VERSION @ISA); +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); -$VERSION = '0.280217'; sub link_executable { my $self = shift; diff --git a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm index 3d4867c2f8d..a5d81ca3311 100644 --- a/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm +++ b/Master/tlpkg/tlperl/lib/ExtUtils/CBuilder/Platform/os2.pm @@ -1,10 +1,9 @@ package ExtUtils::CBuilder::Platform::os2; - +$ExtUtils::CBuilder::Platform::os2::VERSION = '0.280221'; use strict; use ExtUtils::CBuilder::Platform::Unix; -use vars qw($VERSION @ISA); -$VERSION = '0.280217'; +use vars qw(@ISA); @ISA = qw(ExtUtils::CBuilder::Platform::Unix); sub need_prelink { 1 } |