From: Perl 5 Porters Date: Sat, 13 Jan 1996 04:16:49 +0000 (+0000) Subject: perl 5.002beta2 patch X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4ad3186eb5319bf0399d911b0a1f7d45dbe377c8;hp=1476d272ad11d4ee4160587660fab223f7373e88;p=p5sagit%2Fp5-mst-13.2.git perl 5.002beta2 patch Disable prototypes. Disable pod2man. --- diff --git a/ext/DB_File/Makefile.PL b/ext/DB_File/Makefile.PL index d9218d9..f67e6cd 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? +); diff --git a/ext/DynaLoader/Makefile.PL b/ext/DynaLoader/Makefile.PL index 3c7effc..1b1bf7e 100644 --- a/ext/DynaLoader/Makefile.PL +++ b/ext/DynaLoader/Makefile.PL @@ -1,17 +1,19 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'LINKTYPE' => 'static', - 'DEFINE' => '-DLIBC="$(LIBC)"', - 'SKIP' => [qw(dynamic dynamic_lib dynamic_bs)], - 'clean' => {FILES => 'DynaLoader.c'}, + LINKTYPE => 'static', + DEFINE => '-DLIBC="$(LIBC)"', + MAN3PODS => ' ', # Pods will be built by installman. + SKIP => [qw(dynamic dynamic_lib dynamic_bs)], + XSPROTOARG => '-noprototypes', # XXX remove later? + clean => {FILES => 'DynaLoader.c'}, ); sub MY::postamble { ' DynaLoader.c: $(DLSRC) - $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSUBPPARGS) $(DLSRC) >tmp && mv tmp $@ + $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $(DLSRC) >tmp && mv tmp $@ # Perform very simple tests just to check for major gaffs. # We can\'t do much more for platforms we are not executing on. diff --git a/ext/Fcntl/Makefile.PL b/ext/Fcntl/Makefile.PL index 414df14..c432e1a 100644 --- a/ext/Fcntl/Makefile.PL +++ b/ext/Fcntl/Makefile.PL @@ -1,2 +1,6 @@ use ExtUtils::MakeMaker; -WriteMakefile(); +WriteMakefile( + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +); + diff --git a/ext/GDBM_File/Makefile.PL b/ext/GDBM_File/Makefile.PL index ababcc7..6278008 100644 --- a/ext/GDBM_File/Makefile.PL +++ b/ext/GDBM_File/Makefile.PL @@ -1,2 +1,6 @@ use ExtUtils::MakeMaker; -WriteMakefile(LIBS => ["-L/usr/local/lib -lgdbm", "-ldbm"]); +WriteMakefile( + LIBS => ["-L/usr/local/lib -lgdbm", "-ldbm"], + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +); diff --git a/ext/NDBM_File/Makefile.PL b/ext/NDBM_File/Makefile.PL index 37e4a5d..c765dd5 100644 --- a/ext/NDBM_File/Makefile.PL +++ b/ext/NDBM_File/Makefile.PL @@ -1,2 +1,6 @@ use ExtUtils::MakeMaker; -WriteMakefile(LIBS => ["-L/usr/local/lib -lndbm", "-ldbm -lucb"]); +WriteMakefile( + LIBS => ["-L/usr/local/lib -lndbm", "-ldbm -lucb"], + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +); diff --git a/ext/ODBM_File/Makefile.PL b/ext/ODBM_File/Makefile.PL index 10eef6f..495df3a 100644 --- a/ext/ODBM_File/Makefile.PL +++ b/ext/ODBM_File/Makefile.PL @@ -1,2 +1,6 @@ use ExtUtils::MakeMaker; -WriteMakefile(LIBS => ["-ldbm -lucb"]); +WriteMakefile( + LIBS => ["-ldbm -lucb"], + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +); diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index 3717a0a..4a7eb9a 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -1,2 +1,6 @@ use ExtUtils::MakeMaker; -WriteMakefile(LIBS => ["-lm -lposix -lcposix"]); +WriteMakefile( + LIBS => ["-lm -lposix -lcposix"], + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +); diff --git a/ext/SDBM_File/Makefile.PL b/ext/SDBM_File/Makefile.PL index 911870c..634df7c 100644 --- a/ext/SDBM_File/Makefile.PL +++ b/ext/SDBM_File/Makefile.PL @@ -6,7 +6,9 @@ use ExtUtils::MakeMaker; # which perform the corresponding actions in the subdirectory. WriteMakefile( - 'MYEXTLIB' => 'sdbm/libsdbm$(LIB_EXT)', + MYEXTLIB => 'sdbm/libsdbm$(LIB_EXT)', + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? ); diff --git a/ext/Safe/Makefile.PL b/ext/Safe/Makefile.PL index 414df14..2024998 100644 --- a/ext/Safe/Makefile.PL +++ b/ext/Safe/Makefile.PL @@ -1,2 +1,5 @@ use ExtUtils::MakeMaker; -WriteMakefile(); +WriteMakefile( + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +); diff --git a/ext/Socket/Makefile.PL b/ext/Socket/Makefile.PL index a12c339..f4850a0 100644 --- a/ext/Socket/Makefile.PL +++ b/ext/Socket/Makefile.PL @@ -1,2 +1,6 @@ use ExtUtils::MakeMaker; -WriteMakefile(VERSION => 1.5); +WriteMakefile( + VERSION => 1.5, + MAN3PODS => ' ', # Pods will be built by installman. + XSPROTOARG => '-noprototypes', # XXX remove later? +);