Upgrade to Module-Build-0.30
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / Platform / aix.pm
CommitLineData
bb4e9162 1package Module::Build::Platform::aix;
2
3use strict;
7a827510 4use vars qw($VERSION);
738349a8 5$VERSION = '0.30';
7a827510 6$VERSION = eval $VERSION;
bb4e9162 7use Module::Build::Platform::Unix;
8
9use vars qw(@ISA);
10@ISA = qw(Module::Build::Platform::Unix);
11
12# This class isn't necessary anymore, but we can't delete it, because
13# some people might still have the old copy in their @INC, containing
14# code we don't want to execute, so we have to make sure an upgrade
15# will replace it with this empty subclass.
16
171;
18__END__
19
20
21=head1 NAME
22
23Module::Build::Platform::aix - Builder class for AIX platform
24
25=head1 DESCRIPTION
26
27This module provides some routines very specific to the AIX
28platform.
29
30Please see the L<Module::Build> for the general docs.
31
32=head1 AUTHOR
33
77e96e88 34Ken Williams <kwilliams@cpan.org>
bb4e9162 35
36=head1 SEE ALSO
37
38perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
39
40=cut