Document and test Time::Piece.
[p5sagit/p5-mst-13.2.git] / ext / POSIX / Makefile.PL
CommitLineData
42793c05 1use ExtUtils::MakeMaker;
514114c1 2use Config;
3my @libs;
4if ($^O ne 'MSWin32') {
b8392fa5 5 @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
514114c1 6}
4ad3186e 7WriteMakefile(
1adb159c 8 NAME => 'POSIX',
514114c1 9 @libs,
69158f75 10 MAN3PODS => {}, # Pods will be built by installman.
4ad3186e 11 XSPROTOARG => '-noprototypes', # XXX remove later?
c07a80fd 12 VERSION_FROM => 'POSIX.pm',
4ad3186e 13);