This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: useless use of void context work-around
[perl5.git] / ext / POSIX / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use Config;
3 my @libs;
4 if ($^O ne 'MSWin32') {
5     @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
6 }
7 WriteMakefile(
8     NAME        => 'POSIX',
9     @libs,
10     MAN3PODS    => {},  # Pods will be built by installman.
11     XSPROTOARG => '-noprototypes',              # XXX remove later?
12     VERSION_FROM => 'POSIX.pm', 
13 );