diff options
Diffstat (limited to 'ext/POSIX/Makefile.PL')
-rw-r--r-- | ext/POSIX/Makefile.PL | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index fda7528857..15256cf198 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -1,9 +1,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'POSIX', - ($^O eq 'MSWin32' ? () : ($^O =~ /cygwin/ ? () : - (LIBS => ["-lm -lposix -lcposix"]) - )), + ($^O eq 'MSWin32' ? () : (LIBS => ["-lm -lposix -lcposix"])), MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'POSIX.pm', |