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