File Coverage

lib/ExtUtils/MM_MacOS.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package ExtUtils::MM_MacOS;
2              
3 1     1   6751 use strict;
  1         2  
  1         28  
4 1     1   6 use warnings;
  1         3  
  1         107  
5              
6             our $VERSION = '7.70';
7             $VERSION =~ tr/_//d;
8              
9             sub new {
10 0     0 0   die 'MacOS Classic (MacPerl) is no longer supported by MakeMaker';
11             }
12              
13             =head1 NAME
14              
15             ExtUtils::MM_MacOS - once produced Makefiles for MacOS Classic
16              
17             =head1 SYNOPSIS
18              
19             # MM_MacOS no longer contains any code. This is just a stub.
20              
21             =head1 DESCRIPTION
22              
23             Once upon a time, MakeMaker could produce an approximation of a correct
24             Makefile on MacOS Classic (MacPerl). Due to a lack of maintainers, this
25             fell out of sync with the rest of MakeMaker and hadn't worked in years.
26             Since there's little chance of it being repaired, MacOS Classic is fading
27             away, and the code was icky to begin with, the code has been deleted to
28             make maintenance easier.
29              
30             Anyone interested in resurrecting this file should pull the old version
31             from the MakeMaker CVS repository and contact makemaker@perl.org.
32              
33             =cut
34              
35             1;