This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Integrate with Sarathy.
[perl5.git] / ext / POSIX / Makefile.PL
1 use ExtUtils::MakeMaker;
2 WriteMakefile(
3     NAME        => 'POSIX',
4     ($^O eq 'MSWin32' ? () : ($^O =~ /cygwin/ ? () : 
5       (LIBS     => ["-lm -lposix -lcposix"])
6     )),
7     MAN3PODS    => {},  # Pods will be built by installman.
8     XSPROTOARG => '-noprototypes',              # XXX remove later?
9     VERSION_FROM => 'POSIX.pm', 
10 );