[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 package ExtUtils::MakeMaker::vmsish; 2 3 use strict; 4 5 use vars qw($VERSION); 6 $VERSION = 6.42; 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
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |