Upgrade to Module-Build-0.2805
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / Platform / cygwin.pm
CommitLineData
bb4e9162 1package Module::Build::Platform::cygwin;
2
3use strict;
4use Module::Build::Platform::Unix;
5
6use vars qw(@ISA);
7@ISA = qw(Module::Build::Platform::Unix);
8
9sub manpage_separator {
10 '.'
11}
12
131;
14__END__
15
16
17=head1 NAME
18
19Module::Build::Platform::cygwin - Builder class for Cygwin platform
20
21=head1 DESCRIPTION
22
23This module provides some routines very specific to the cygwin
24platform.
25
26Please see the L<Module::Build> for the general docs.
27
28=head1 AUTHOR
29
30Initial stub by Yitzchak Scott-Thoennes <sthoenna@efn.org>
31
32=head1 SEE ALSO
33
34perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
35
36=cut