home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / perl / 5.10.0 / ExtUtils / MakeMaker / vmsish.pm < prev   
Encoding:
Perl POD Document  |  2009-06-26  |  720 b   |  43 lines

  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
  43.