diff options
author | David Mitchell <davem@iabyn.com> | 2009-06-10 16:06:08 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2009-06-10 16:06:08 +0100 |
commit | 75b0fd110ae0c4fbafa45cf18e7cd618a6a7bdd8 (patch) | |
tree | 88ec453781ae5f163a69e8058403c51121acdb24 /lib/ExtUtils/MakeMaker | |
parent | 454dbe40843112257eaf162094b08e258367e968 (diff) | |
download | perl-75b0fd110ae0c4fbafa45cf18e7cd618a6a7bdd8.tar.gz |
remove from blead, some files already removed from Makemaker 6.52
Diffstat (limited to 'lib/ExtUtils/MakeMaker')
-rw-r--r-- | lib/ExtUtils/MakeMaker/bytes.pm | 40 | ||||
-rw-r--r-- | lib/ExtUtils/MakeMaker/vmsish.pm | 41 |
2 files changed, 0 insertions, 81 deletions
diff --git a/lib/ExtUtils/MakeMaker/bytes.pm b/lib/ExtUtils/MakeMaker/bytes.pm deleted file mode 100644 index b24b71a4d2..0000000000 --- a/lib/ExtUtils/MakeMaker/bytes.pm +++ /dev/null @@ -1,40 +0,0 @@ -package ExtUtils::MakeMaker::bytes; - -use strict; - -our $VERSION = 6.50; - -my $Have_Bytes = eval { require bytes; 1; }; - -sub import { - return unless $Have_Bytes; - - shift; - unshift @_, 'bytes'; - - goto &bytes::import; -} - -1; - - -=head1 NAME - -ExtUtils::MakeMaker::bytes - Version-agnostic bytes.pm - -=head1 SYNOPSIS - - use just like bytes.pm - -=head1 DESCRIPTION - -bytes.pm was introduced with 5.6. This means any code which has 'use -bytes' in it won't even compile on 5.5.X. Since bytes is a lexical -pragma and must be used at compile time we can't simply wrap it in -a BEGIN { eval 'use bytes' } block. - -ExtUtils::MakeMaker::bytes is just a very thin wrapper around bytes -which works just like it when bytes.pm exists and everywhere else it -does nothing. - -=cut diff --git a/lib/ExtUtils/MakeMaker/vmsish.pm b/lib/ExtUtils/MakeMaker/vmsish.pm deleted file mode 100644 index 13b7da2d1f..0000000000 --- a/lib/ExtUtils/MakeMaker/vmsish.pm +++ /dev/null @@ -1,41 +0,0 @@ -package ExtUtils::MakeMaker::vmsish; - -use strict; - -our $VERSION = 6.50; - -my $IsVMS = $^O eq 'VMS'; - -require vmsish if $IsVMS; - - -sub import { - return unless $IsVMS; - - shift; - unshift @_, 'vmsish'; - - goto &vmsish::import; -} - -1; - - -=head1 NAME - -ExtUtils::MakeMaker::vmsish - Platform-agnostic vmsish.pm - -=head1 SYNOPSIS - - use just like vmsish.pm - -=head1 DESCRIPTION - -Until 5.8.0, vmsish.pm is only installed on VMS. This means any code -which has 'use vmsish' in it won't even compile outside VMS. This -makes ExtUtils::MM_VMS very hard to test. - -ExtUtils::MakeMaker::vmsish is just a very thin wrapper around vmsish -which works just like it on VMS and everywhere else it does nothing. - -=cut |