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