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 / os2.pm < prev    next >
Text File  |  2005-04-27  |  682b  |  41 lines

  1. package Module::Build::Platform::os2;
  2.  
  3. use strict;
  4. use Module::Build::Platform::Unix;
  5.  
  6. use vars qw(@ISA);
  7. @ISA = qw(Module::Build::Platform::Unix);
  8.  
  9. sub manpage_separator { '.' }
  10.  
  11. sub need_prelink_c { 1 }
  12.  
  13. # Apparently C compilation is pretty broken here, just disable it
  14. # until we figure it out
  15. sub have_c_compiler { 0 }
  16.  
  17. 1;
  18. __END__
  19.  
  20.  
  21. =head1 NAME
  22.  
  23. Module::Build::Platform::os2 - Builder class for OS/2 platform
  24.  
  25. =head1 DESCRIPTION
  26.  
  27. This module provides some routines very specific to the OS/2
  28. platform.
  29.  
  30. Please see the L<Module::Build> for the general docs.
  31.  
  32. =head1 AUTHOR
  33.  
  34. Ken Williams, ken@mathforum.org
  35.  
  36. =head1 SEE ALSO
  37.  
  38. perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
  39.  
  40. =cut
  41.