home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / Default.pm < prev    next >
Text File  |  2005-04-27  |  492b  |  31 lines

  1. package Module::Build::Platform::Default;
  2.  
  3. use strict;
  4. use Module::Build::Base;
  5.  
  6. use vars qw(@ISA);
  7. @ISA = qw(Module::Build::Base);
  8.  
  9. 1;
  10. __END__
  11.  
  12.  
  13. =head1 NAME
  14.  
  15. Module::Build::Platform::Default - Stub class for unknown platforms
  16.  
  17. =head1 DESCRIPTION
  18.  
  19. The sole purpose of this module is to inherit from
  20. C<Module::Build::Base>.  Please see the L<Module::Build> for the docs.
  21.  
  22. =head1 AUTHOR
  23.  
  24. Ken Williams, ken@mathforum.org
  25.  
  26. =head1 SEE ALSO
  27.  
  28. perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
  29.  
  30. =cut
  31.