diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-17 02:13:58 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-04-17 02:13:58 +0000 |
commit | 6dead956033b9cd9214b9fa427a6432180c1bcd5 (patch) | |
tree | 50a3a750651128502a6cb7a6da29cd81283238eb /ext/POSIX/Makefile.PL | |
parent | 8c9208bc5764dada175aceff9d0b1938978d7db6 (diff) | |
download | perl-6dead956033b9cd9214b9fa427a6432180c1bcd5.tar.gz |
[win32] support POSIX, enable more locale tests
p4raw-id: //depot/win32/perl@889
Diffstat (limited to 'ext/POSIX/Makefile.PL')
-rw-r--r-- | ext/POSIX/Makefile.PL | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index 3359d1742c..bc1dda9387 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -1,7 +1,7 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'POSIX', - 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', |