Upgrade to ExtUtils::MakeMaker 6.42
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MM_MacOS.pm
CommitLineData
f582e489 1package ExtUtils::MM_MacOS;
d0843067 2
1e65eb70 3use strict;
4
5use vars qw($VERSION);
6d6be53e 6$VERSION = 6.42;
f582e489 7
5dca256e 8sub new {
9 die <<'UNSUPPORTED';
10MacOS Classic (MacPerl) is no longer supported by MakeMaker.
11Please use Module::Build instead.
12UNSUPPORTED
13}
f582e489 14
15=head1 NAME
16
5dca256e 17ExtUtils::MM_MacOS - once produced Makefiles for MacOS Classic
f582e489 18
19=head1 SYNOPSIS
20
5dca256e 21 # MM_MacOS no longer contains any code. This is just a stub.
f582e489 22
23=head1 DESCRIPTION
24
5dca256e 25Once upon a time, MakeMaker could produce an approximation of a correct
26Makefile on MacOS Classic (MacPerl). Due to a lack of maintainers, this
27fell out of sync with the rest of MakeMaker and hadn't worked in years.
28Since there's little chance of it being repaired, MacOS Classic is fading
29away, and the code was icky to begin with, the code has been deleted to
30make maintenance easier.
f582e489 31
5dca256e 32Those interested in writing modules for MacPerl should use Module::Build
33which works better than MakeMaker ever did.
dedf98bc 34
5dca256e 35Anyone interested in resurrecting this file should pull the old version
36from the MakeMaker CVS repository and contact makemaker@perl.org, but we
37really encourage you to work on Module::Build instead.
943b127a 38
479d2113 39=cut
943b127a 40
f582e489 411;