summaryrefslogtreecommitdiff
path: root/contrib/perl5/ext
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>1999-05-02 15:18:32 +0000
committerMark Murray <markm@FreeBSD.org>1999-05-02 15:18:32 +0000
commitc3180f4f12ee6287bc6dbbd4b8e267dcf4fa572b (patch)
tree0f7bde73dda8f5634078fe87269f2c563be8795a /contrib/perl5/ext
parent315164071c5f6dc1c369ef22cd31ac8c3abd9d25 (diff)
Notes
Diffstat (limited to 'contrib/perl5/ext')
-rw-r--r--contrib/perl5/ext/IPC/SysV/Makefile.PL4
-rw-r--r--contrib/perl5/ext/POSIX/Makefile.PL4
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/perl5/ext/IPC/SysV/Makefile.PL b/contrib/perl5/ext/IPC/SysV/Makefile.PL
index c4078f84f236a..a4de7a9231675 100644
--- a/contrib/perl5/ext/IPC/SysV/Makefile.PL
+++ b/contrib/perl5/ext/IPC/SysV/Makefile.PL
@@ -1,5 +1,5 @@
# This -*- perl -*- script makes the Makefile
-# $Id: Makefile.PL,v 1.1.1.1 1998/09/09 06:59:51 markm Exp $
+# $Id: Makefile.PL,v 1.1.1.2 1999/05/02 14:20:37 markm Exp $
require 5.002;
use ExtUtils::MakeMaker;
@@ -22,7 +22,7 @@ sub MY::libscan
WriteMakefile(
VERSION_FROM => "SysV.pm",
NAME => "IPC::SysV",
- MAN3PODS => ' ',
+ MAN3PODS => {}, # Pods will be built by installman.
'dist' => {COMPRESS => 'gzip -9f',
SUFFIX => 'gz',
diff --git a/contrib/perl5/ext/POSIX/Makefile.PL b/contrib/perl5/ext/POSIX/Makefile.PL
index 0218b8d056d33..d379fdb908e05 100644
--- a/contrib/perl5/ext/POSIX/Makefile.PL
+++ b/contrib/perl5/ext/POSIX/Makefile.PL
@@ -1,8 +1,8 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'POSIX',
- (($^O eq 'MSWin32' || $^O eq 'freebsd') ? () : (LIBS => ["-lm -lposix -lcposix"])),
- MAN3PODS => ' ', # Pods will be built by installman.
+ ($^O eq 'MSWin32' ? () : (LIBS => ["-lm -lposix -lcposix"])),
+ MAN3PODS => {}, # Pods will be built by installman.
XSPROTOARG => '-noprototypes', # XXX remove later?
VERSION_FROM => 'POSIX.pm',
);