home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / perl / 5.10.0 / ExtUtils / MM_MacOS.pm < prev    next >
Encoding:
Perl POD Document  |  2009-06-26  |  1.1 KB  |  42 lines

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