Once again syncing after too long an absence
[p5sagit/p5-mst-13.2.git] / ext / POSIX / Makefile.PL
CommitLineData
42793c05 1use ExtUtils::MakeMaker;
ee8c7f54 2use Config;
3my @libs;
4if ($^O ne 'MSWin32') {
0e06870b 5 @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
ee8c7f54 6}
4ad3186e 7WriteMakefile(
1adb159c 8 NAME => 'POSIX',
ee8c7f54 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);