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