blob: d379fdb908e05fa25a33887e354097d4e54c30d8 (
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',
);
|