Upgrade to ExtUtils::CBuilder 0.12 and ExtUtils::ParseXS 2.10
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / CBuilder / Platform / os2.pm
CommitLineData
6b09c160 1package ExtUtils::CBuilder::Platform::os2;
2
3use strict;
4use ExtUtils::CBuilder::Platform::Unix;
5
6use vars qw($VERSION @ISA);
345dbb93 7$VERSION = '0.12';
6b09c160 8@ISA = qw(ExtUtils::CBuilder::Platform::Unix);
9
10sub need_prelink { 1 }
11
121;