summaryrefslogtreecommitdiff
path: root/ext/DB_File
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters.nicoh.com>1996-01-13 04:16:49 +0000
committerAndy Dougherty <doughera.lafayette.edu>1996-01-13 04:16:49 +0000
commit4ad3186eb5319bf0399d911b0a1f7d45dbe377c8 (patch)
treea0ab6527cea954e89ebe87c6af90bee3987e624c /ext/DB_File
parent1476d272ad11d4ee4160587660fab223f7373e88 (diff)
downloadperl-4ad3186eb5319bf0399d911b0a1f7d45dbe377c8.tar.gz
perl 5.002beta2 patch
Disable prototypes. Disable pod2man.
Diffstat (limited to 'ext/DB_File')
-rw-r--r--ext/DB_File/Makefile.PL4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/DB_File/Makefile.PL b/ext/DB_File/Makefile.PL
index d9218d9d33..f67e6cd642 100644
--- a/ext/DB_File/Makefile.PL
+++ b/ext/DB_File/Makefile.PL
@@ -3,7 +3,9 @@ use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'DB_File',
LIBS => ["-L/usr/local/lib -ldb"],
+ MAN3PODS => ' ', # Pods will be built by installman.
#INC => '-I/usr/local/include',
VERSION => 1.01,
- );
+ XSPROTOARG => '-noprototypes', # XXX remove later?
+);