summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorCharles Bailey <bailey@newman.upenn.edu>1998-03-01 20:48:27 -0500
committerMalcolm Beattie <mbeattie@sable.ox.ac.uk>1998-03-05 19:01:25 +0000
commitf7d144c835d02593edb2388cf7cb0c7395c53ae2 (patch)
tree1fae522e32540a6212b0e04d3f56172642fa698c /ext
parentef2f54b068d6db9a696444bbfd2ffbf3ed35f3d3 (diff)
downloadperl-f7d144c835d02593edb2388cf7cb0c7395c53ae2.tar.gz
Miscellaneous minor fixes
p4raw-id: //depot/perl@779
Diffstat (limited to 'ext')
-rw-r--r--ext/B/Makefile.PL1
-rw-r--r--ext/B/byteperl.c1
-rw-r--r--ext/Thread/Makefile.PL3
3 files changed, 3 insertions, 2 deletions
diff --git a/ext/B/Makefile.PL b/ext/B/Makefile.PL
index 92f01e24c4..cdcc4ed71b 100644
--- a/ext/B/Makefile.PL
+++ b/ext/B/Makefile.PL
@@ -16,6 +16,7 @@ if ($^O eq 'MSWin32') {
WriteMakefile(
NAME => "B",
VERSION => "a5",
+ MAN3PODS => ' ',
clean => {
FILES => "perl$e byteperl$e *$o B.c *~"
}
diff --git a/ext/B/byteperl.c b/ext/B/byteperl.c
index c4bf6d7dd8..a42edfb8d5 100644
--- a/ext/B/byteperl.c
+++ b/ext/B/byteperl.c
@@ -3,7 +3,6 @@
#ifndef PATCHLEVEL
#include "patchlevel.h"
#endif
-#include "byterun.h"
static void xs_init _((void));
static PerlInterpreter *my_perl;
diff --git a/ext/Thread/Makefile.PL b/ext/Thread/Makefile.PL
index bed0db43d7..e252d4e6c3 100644
--- a/ext/Thread/Makefile.PL
+++ b/ext/Thread/Makefile.PL
@@ -1,6 +1,7 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Thread',
- VERSION_FROM => 'Thread.pm'
+ VERSION_FROM => 'Thread.pm',
+ MAN3PODS => ' '
);