Upgrade to Module-Build-0.2805
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / Platform / aix.pm
1 package Module::Build::Platform::aix;
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 # This class isn't necessary anymore, but we can't delete it, because
10 # some people might still have the old copy in their @INC, containing
11 # code we don't want to execute, so we have to make sure an upgrade
12 # will replace it with this empty subclass.
13
14 1;
15 __END__
16
17
18 =head1 NAME
19
20 Module::Build::Platform::aix - Builder class for AIX platform
21
22 =head1 DESCRIPTION
23
24 This module provides some routines very specific to the AIX
25 platform.
26
27 Please see the L<Module::Build> for the general docs.
28
29 =head1 AUTHOR
30
31 Ken Williams <ken@cpan.org>
32
33 =head1 SEE ALSO
34
35 perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
36
37 =cut