1*0Sstevel@tonic-gatepackage ExtUtils::MakeMaker::vmsish;
2*0Sstevel@tonic-gate
3*0Sstevel@tonic-gateuse vars qw($VERSION);
4*0Sstevel@tonic-gate$VERSION = 0.01;
5*0Sstevel@tonic-gate
6*0Sstevel@tonic-gatemy $IsVMS = $^O eq 'VMS';
7*0Sstevel@tonic-gate
8*0Sstevel@tonic-gaterequire vmsish if $IsVMS;
9*0Sstevel@tonic-gate
10*0Sstevel@tonic-gate
11*0Sstevel@tonic-gatesub import {
12*0Sstevel@tonic-gate    return unless $IsVMS;
13*0Sstevel@tonic-gate
14*0Sstevel@tonic-gate    shift;
15*0Sstevel@tonic-gate    unshift @_, 'vmsish';
16*0Sstevel@tonic-gate
17*0Sstevel@tonic-gate    goto &vmsish::import;
18*0Sstevel@tonic-gate}
19*0Sstevel@tonic-gate
20*0Sstevel@tonic-gate1;
21*0Sstevel@tonic-gate
22*0Sstevel@tonic-gate
23*0Sstevel@tonic-gate=head1 NAME
24*0Sstevel@tonic-gate
25*0Sstevel@tonic-gateExtUtils::MakeMaker::vmsish - Platform agnostic vmsish.pm
26*0Sstevel@tonic-gate
27*0Sstevel@tonic-gate=head1 SYNOPSIS
28*0Sstevel@tonic-gate
29*0Sstevel@tonic-gate  use just like vmsish.pm
30*0Sstevel@tonic-gate
31*0Sstevel@tonic-gate=head1 DESCRIPTION
32*0Sstevel@tonic-gate
33*0Sstevel@tonic-gateUntil 5.8.0, vmsish.pm is only installed on VMS.  This means any code
34*0Sstevel@tonic-gatewhich has 'use vmsish' in it won't even compile outside VMS.  This
35*0Sstevel@tonic-gatemakes ExtUtils::MM_VMS very hard to test.
36*0Sstevel@tonic-gate
37*0Sstevel@tonic-gateExtUtils::MakeMaker::vmsish is just a very thin wrapper around vmsish
38*0Sstevel@tonic-gatewhich works just like it on VMS and everywhere else it does nothing.
39*0Sstevel@tonic-gate
40*0Sstevel@tonic-gate=cut
41