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