[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/se3-unattended/var/se3/unattended/install/linuxaux/opt/perl/lib/5.10.0/ExtUtils/MakeMaker/ -> vmsish.pm (source)

   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


Generated: Tue Mar 17 22:47:18 2015 Cross-referenced by PHPXref 0.7.1