xref: /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_MacOS.pm (revision e068048151d29f2562a32185e21a8ba885482260)
1package ExtUtils::MM_MacOS;
2
3use strict;
4use warnings;
5
6our $VERSION = '7.70';
7$VERSION =~ tr/_//d;
8
9sub new {
10    die 'MacOS Classic (MacPerl) is no longer supported by MakeMaker';
11}
12
13=head1 NAME
14
15ExtUtils::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
23Once upon a time, MakeMaker could produce an approximation of a correct
24Makefile on MacOS Classic (MacPerl).  Due to a lack of maintainers, this
25fell out of sync with the rest of MakeMaker and hadn't worked in years.
26Since there's little chance of it being repaired, MacOS Classic is fading
27away, and the code was icky to begin with, the code has been deleted to
28make maintenance easier.
29
30Anyone interested in resurrecting this file should pull the old version
31from the MakeMaker CVS repository and contact makemaker@perl.org.
32
33=cut
34
351;
36