This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Module::Build to 0.34_02
[perl5.git] / lib / Module / Build / Platform / os2.pm
CommitLineData
bb4e9162
YST
1package Module::Build::Platform::os2;
2
3use strict;
7a827510 4use vars qw($VERSION);
4085a377 5$VERSION = '0.34_02';
7a827510 6$VERSION = eval $VERSION;
bb4e9162
YST
7use Module::Build::Platform::Unix;
8
9use vars qw(@ISA);
10@ISA = qw(Module::Build::Platform::Unix);
11
12sub manpage_separator { '.' }
13
dc8021d3 14sub have_forkpipe { 0 }
a314697d 15
bb4e9162
YST
161;
17__END__
18
19
20=head1 NAME
21
22Module::Build::Platform::os2 - Builder class for OS/2 platform
23
24=head1 DESCRIPTION
25
26This module provides some routines very specific to the OS/2
27platform.
28
29Please see the L<Module::Build> for the general docs.
30
31=head1 AUTHOR
32
77e96e88 33Ken Williams <kwilliams@cpan.org>
bb4e9162
YST
34
35=head1 SEE ALSO
36
37perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
38
39=cut