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