Upgrade to ExtUtils::MakeMaker 6.42
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MakeMaker / vmsish.pm
CommitLineData
479d2113 1package ExtUtils::MakeMaker::vmsish;
2
1e65eb70 3use strict;
4
479d2113 5use vars qw($VERSION);
6d6be53e 6$VERSION = 6.42;
479d2113 7
8my $IsVMS = $^O eq 'VMS';
9
10require vmsish if $IsVMS;
11
12
13sub import {
14 return unless $IsVMS;
15
16 shift;
17 unshift @_, 'vmsish';
18
19 goto &vmsish::import;
20}
21
221;
23
24
25=head1 NAME
26
a7d1454b 27ExtUtils::MakeMaker::vmsish - Platform-agnostic vmsish.pm
479d2113 28
29=head1 SYNOPSIS
30
31 use just like vmsish.pm
32
33=head1 DESCRIPTION
34
35Until 5.8.0, vmsish.pm is only installed on VMS. This means any code
36which has 'use vmsish' in it won't even compile outside VMS. This
37makes ExtUtils::MM_VMS very hard to test.
38
39ExtUtils::MakeMaker::vmsish is just a very thin wrapper around vmsish
40which works just like it on VMS and everywhere else it does nothing.
41
42=cut