xref: /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_MacOS.pm (revision e068048151d29f2562a32185e21a8ba885482260)
1b39c5158Smillertpackage ExtUtils::MM_MacOS;
2b39c5158Smillert
3b39c5158Smillertuse strict;
4eac174f2Safresh1use warnings;
5b39c5158Smillert
6*e0680481Safresh1our $VERSION = '7.70';
756d68f1eSafresh1$VERSION =~ tr/_//d;
8b39c5158Smillert
9b39c5158Smillertsub new {
10b8851fccSafresh1    die 'MacOS Classic (MacPerl) is no longer supported by MakeMaker';
11b39c5158Smillert}
12b39c5158Smillert
13b39c5158Smillert=head1 NAME
14b39c5158Smillert
15b39c5158SmillertExtUtils::MM_MacOS - once produced Makefiles for MacOS Classic
16b39c5158Smillert
17b39c5158Smillert=head1 SYNOPSIS
18b39c5158Smillert
19b39c5158Smillert  # MM_MacOS no longer contains any code.  This is just a stub.
20b39c5158Smillert
21b39c5158Smillert=head1 DESCRIPTION
22b39c5158Smillert
23b39c5158SmillertOnce upon a time, MakeMaker could produce an approximation of a correct
24b39c5158SmillertMakefile on MacOS Classic (MacPerl).  Due to a lack of maintainers, this
25b39c5158Smillertfell out of sync with the rest of MakeMaker and hadn't worked in years.
26b39c5158SmillertSince there's little chance of it being repaired, MacOS Classic is fading
27b39c5158Smillertaway, and the code was icky to begin with, the code has been deleted to
28b39c5158Smillertmake maintenance easier.
29b39c5158Smillert
30b39c5158SmillertAnyone interested in resurrecting this file should pull the old version
31b8851fccSafresh1from the MakeMaker CVS repository and contact makemaker@perl.org.
32b39c5158Smillert
33b39c5158Smillert=cut
34b39c5158Smillert
35b39c5158Smillert1;
36