do, warn, use
[p5sagit/p5-mst-13.2.git] / ext / POSIX / Makefile.PL
index fda7528..73bb02d 100644 (file)
@@ -1,9 +1,12 @@
 use ExtUtils::MakeMaker;
+use Config;
+my @libs;
+if ($^O ne 'MSWin32') {
+    @libs = ('LIBS' => ["-lm -lposix -lcposix"]);
+}
 WriteMakefile(
     NAME       => 'POSIX',
-    ($^O eq 'MSWin32' ? () : ($^O =~ /cygwin/ ? () : 
-      (LIBS    => ["-lm -lposix -lcposix"])
-    )),
+    @libs,
     MAN3PODS   => {},  # Pods will be built by installman.
     XSPROTOARG => '-noprototypes',             # XXX remove later?
     VERSION_FROM => 'POSIX.pm',