Re: [PATCH] [ID 20010410.001] Not OK: perl v5.7.1 on i386-freebsd 4.3-rc (UNINSTALLED)
[p5sagit/p5-mst-13.2.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 );