X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FGitalist.git;a=blobdiff_plain;f=local-lib5%2Flib%2Fperl5%2FModule%2FBuild%2FPlatform%2Fcygwin.pm;fp=local-lib5%2Flib%2Fperl5%2FModule%2FBuild%2FPlatform%2Fcygwin.pm;h=62a6461ce247cff38c635b6b5e909193e9cff741;hp=0000000000000000000000000000000000000000;hb=3fea05b9fbf95091f4522528b9980a33e0235603;hpb=af746827daa7a8feccee889e1d12ebc74cc9201e diff --git a/local-lib5/lib/perl5/Module/Build/Platform/cygwin.pm b/local-lib5/lib/perl5/Module/Build/Platform/cygwin.pm new file mode 100644 index 0000000..62a6461 --- /dev/null +++ b/local-lib5/lib/perl5/Module/Build/Platform/cygwin.pm @@ -0,0 +1,39 @@ +package Module::Build::Platform::cygwin; + +use strict; +use vars qw($VERSION); +$VERSION = '0.35'; +$VERSION = eval $VERSION; +use Module::Build::Platform::Unix; + +use vars qw(@ISA); +@ISA = qw(Module::Build::Platform::Unix); + +sub manpage_separator { + '.' +} + +1; +__END__ + + +=head1 NAME + +Module::Build::Platform::cygwin - Builder class for Cygwin platform + +=head1 DESCRIPTION + +This module provides some routines very specific to the cygwin +platform. + +Please see the L for the general docs. + +=head1 AUTHOR + +Initial stub by Yitzchak Scott-Thoennes + +=head1 SEE ALSO + +perl(1), Module::Build(3), ExtUtils::MakeMaker(3) + +=cut