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