blob: 15256cf198f0939714e4439f2aaaa77aeee2ce01 (
plain)
1
2
3
4
5
6
7
8
|
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'POSIX',
($^O eq 'MSWin32' ? () : (LIBS => ["-lm -lposix -lcposix"])),
MAN3PODS => {}, # Pods will be built by installman.
XSPROTOARG => '-noprototypes', # XXX remove later?
VERSION_FROM => 'POSIX.pm',
);
|