Re: [PATCH] ExtUtils-{ParseXS,CBuilder} into bleadperl (was: Re: [Module::Build]...
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / CBuilder / Platform / os2.pm
1 package ExtUtils::CBuilder::Platform::os2;
2
3 use strict;
4 use ExtUtils::CBuilder::Platform::Unix;
5
6 use vars qw($VERSION @ISA);
7 $VERSION = '0.01';
8 @ISA = qw(ExtUtils::CBuilder::Platform::Unix);
9
10 sub need_prelink { 1 }
11
12 1;