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