diff options
-rw-r--r-- | ext/B/Makefile.PL | 5 | ||||
-rw-r--r-- | ext/Devel-DProf/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/Devel-Peek/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/DynaLoader/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/Errno/Makefile.PL | 4 | ||||
-rw-r--r-- | ext/Fcntl/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/File-Glob/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/GDBM_File/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/Hash-Util-FieldHash/Makefile.PL | 4 | ||||
-rw-r--r-- | ext/Hash-Util/Makefile.PL | 2 | ||||
-rw-r--r-- | ext/I18N-Langinfo/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/NDBM_File/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/ODBM_File/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/POSIX/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/SDBM_File/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/Socket/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/Sys-Hostname/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/XS-APItest/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/XS-Typemap/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/attrs/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/mro/Makefile.PL | 1 | ||||
-rw-r--r-- | ext/re/Makefile.PL | 1 |
22 files changed, 0 insertions, 33 deletions
diff --git a/ext/B/Makefile.PL b/ext/B/Makefile.PL index 4a1e425ac1..123c62402e 100644 --- a/ext/B/Makefile.PL +++ b/ext/B/Makefile.PL @@ -19,7 +19,6 @@ WriteMakefile( NAME => "B", VERSION_FROM => "B.pm", PL_FILES => { 'defsubs_h.PL' => 'defsubs.h' }, - MAN3PODS => {}, clean => { FILES => "perl$e *$o B.c defsubs.h *~" } @@ -31,10 +30,6 @@ sub post_constants { "\nLIBS = $Config::Config{libs}\n" } -sub headerfilefile { - push @makefileopts, MAN3PODS => {}; -} - sub headerpath { if ($core) { return File::Spec->catdir(File::Spec->updir, diff --git a/ext/Devel-DProf/Makefile.PL b/ext/Devel-DProf/Makefile.PL index 5d975eabef..5bb00128d0 100644 --- a/ext/Devel-DProf/Makefile.PL +++ b/ext/Devel-DProf/Makefile.PL @@ -15,5 +15,4 @@ WriteMakefile( SUFFIX => 'gz', DIST_DEFAULT => 'all tardist', }, - MAN3PODS => {}, ); diff --git a/ext/Devel-Peek/Makefile.PL b/ext/Devel-Peek/Makefile.PL index f6d0cc9caa..41fab879ed 100644 --- a/ext/Devel-Peek/Makefile.PL +++ b/ext/Devel-Peek/Makefile.PL @@ -8,5 +8,4 @@ WriteMakefile( SUFFIX => 'gz', DIST_DEFAULT => 'all tardist', }, - MAN3PODS => {}, ); diff --git a/ext/DynaLoader/Makefile.PL b/ext/DynaLoader/Makefile.PL index 1f06c5cbd6..2a9aa7b340 100644 --- a/ext/DynaLoader/Makefile.PL +++ b/ext/DynaLoader/Makefile.PL @@ -4,7 +4,6 @@ WriteMakefile( NAME => 'DynaLoader', LINKTYPE => 'static', DEFINE => '-DLIBC="$(LIBC)"', - MAN3PODS => {}, # Pods will be built by installman. SKIP => [qw(dynamic dynamic_lib dynamic_bs)], XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'DynaLoader_pm.PL', diff --git a/ext/Errno/Makefile.PL b/ext/Errno/Makefile.PL index 9f5b3e77b6..cc45afbfa2 100644 --- a/ext/Errno/Makefile.PL +++ b/ext/Errno/Makefile.PL @@ -1,8 +1,6 @@ use ExtUtils::MakeMaker; use Config; -@VMS = ($^O eq 'VMS') ? (MAN3PODS => {}) : (); - my $arch = "$Config{'archname'}-$Config{'osvers'}"; my $got = ""; if (-e 'arch.txt') { @@ -24,7 +22,6 @@ if ($got ne $arch) { WriteMakefile( NAME => 'Errno', VERSION_FROM => 'Errno_pm.PL', - MAN3PODS => {}, # Pods will be built by installman. PL_FILES => {'Errno_pm.PL'=>'Errno.pm'}, PM => {'Errno.pm' => '$(INST_LIBDIR)/Errno.pm'}, 'clean' => {FILES => 'Errno.pm arch.txt'}, @@ -33,7 +30,6 @@ WriteMakefile( SUFFIX => '.gz', DIST_DEFAULT => 'd/Errno.pm tardist', }, - @VMS, ); sub MY::postamble { diff --git a/ext/Fcntl/Makefile.PL b/ext/Fcntl/Makefile.PL index f1d9bdf2c9..43067893eb 100644 --- a/ext/Fcntl/Makefile.PL +++ b/ext/Fcntl/Makefile.PL @@ -2,7 +2,6 @@ use ExtUtils::MakeMaker; use ExtUtils::Constant 0.11 'WriteConstants'; WriteMakefile( NAME => 'Fcntl', - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'Fcntl.pm', realclean => {FILES=> 'const-c.inc const-xs.inc'}, diff --git a/ext/File-Glob/Makefile.PL b/ext/File-Glob/Makefile.PL index 0d4267a25b..a0f4e6e856 100644 --- a/ext/File-Glob/Makefile.PL +++ b/ext/File-Glob/Makefile.PL @@ -3,7 +3,6 @@ use ExtUtils::Constant 0.11 'WriteConstants'; WriteMakefile( NAME => 'File::Glob', VERSION_FROM => 'Glob.pm', - MAN3PODS => {}, # Pods will be built by installman. OBJECT => 'bsd_glob$(OBJ_EXT) Glob$(OBJ_EXT)', realclean => {FILES=> 'const-c.inc const-xs.inc'}, diff --git a/ext/GDBM_File/Makefile.PL b/ext/GDBM_File/Makefile.PL index 1286dcd670..24e6ee4cb5 100644 --- a/ext/GDBM_File/Makefile.PL +++ b/ext/GDBM_File/Makefile.PL @@ -3,7 +3,6 @@ use ExtUtils::Constant 0.11 'WriteConstants'; WriteMakefile( NAME => 'GDBM_File', LIBS => ["-lgdbm", "-ldbm"], - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'GDBM_File.pm', realclean => {FILES=> 'const-c.inc const-xs.inc'}, diff --git a/ext/Hash-Util-FieldHash/Makefile.PL b/ext/Hash-Util-FieldHash/Makefile.PL index 4793ec912b..71ac2ae727 100644 --- a/ext/Hash-Util-FieldHash/Makefile.PL +++ b/ext/Hash-Util-FieldHash/Makefile.PL @@ -15,8 +15,4 @@ WriteMakefile( INC => '', # e.g., '-I/usr/include/other' # Un-comment this if you add C files to link with later: # OBJECT => '$(O_FILES)', # link all the C files too - # Don't manify in core build - (grep( /^PERL_CORE=1$/, @ARGV) ? - (MAN3PODS => {}) : - ()), ); diff --git a/ext/Hash-Util/Makefile.PL b/ext/Hash-Util/Makefile.PL index eee40c5e34..9faef90d2a 100644 --- a/ext/Hash-Util/Makefile.PL +++ b/ext/Hash-Util/Makefile.PL @@ -5,10 +5,8 @@ use ExtUtils::MakeMaker; WriteMakefile( VERSION_FROM => "lib/Hash/Util.pm", - MAN3PODS => {}, # Pods will be built by installman. NAME => "Hash::Util", DEFINE => "-DPERL_EXT", - NORECURS => 1, # Hash::Util::FieldHash is treated as distinct. ); package MY; diff --git a/ext/I18N-Langinfo/Makefile.PL b/ext/I18N-Langinfo/Makefile.PL index b307aca2e0..eace2657b0 100644 --- a/ext/I18N-Langinfo/Makefile.PL +++ b/ext/I18N-Langinfo/Makefile.PL @@ -12,7 +12,6 @@ WriteMakefile( 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' # Insert -I. if you add *.h files later: 'INC' => '', # e.g., '-I/usr/include/other' - 'MAN3PODS' => {}, # Pods will be built by installman realclean => {FILES=> 'const-c.inc const-xs.inc'}, # Un-comment this if you add C files to link with later: # 'OBJECT' => '$(O_FILES)', # link all the C files too diff --git a/ext/NDBM_File/Makefile.PL b/ext/NDBM_File/Makefile.PL index 7b586017d7..a8adbf0121 100644 --- a/ext/NDBM_File/Makefile.PL +++ b/ext/NDBM_File/Makefile.PL @@ -2,7 +2,6 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'NDBM_File', LIBS => ["-L/usr/local/lib -lndbm", "-ldbm -lucb"], - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'NDBM_File.pm', INC => ($^O eq "MacOS" ? "-i ::::db:include" : "") diff --git a/ext/ODBM_File/Makefile.PL b/ext/ODBM_File/Makefile.PL index 2732a32ac3..0ae31f9c71 100644 --- a/ext/ODBM_File/Makefile.PL +++ b/ext/ODBM_File/Makefile.PL @@ -2,7 +2,6 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'ODBM_File', LIBS => ["-ldbm -lucb"], - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'ODBM_File.pm', ); diff --git a/ext/POSIX/Makefile.PL b/ext/POSIX/Makefile.PL index 5f6679d145..5569e17fd8 100644 --- a/ext/POSIX/Makefile.PL +++ b/ext/POSIX/Makefile.PL @@ -20,7 +20,6 @@ if ($^O ne 'MSWin32') { WriteMakefile( NAME => 'POSIX', @libs, - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'POSIX.pm', realclean => {FILES=> 'const-c.inc const-xs.inc'}, diff --git a/ext/SDBM_File/Makefile.PL b/ext/SDBM_File/Makefile.PL index 1267efc859..fa16a79160 100644 --- a/ext/SDBM_File/Makefile.PL +++ b/ext/SDBM_File/Makefile.PL @@ -17,7 +17,6 @@ else { $myextlib = 'sdbm/libsdbm$(LIB_EXT)'; } WriteMakefile( NAME => 'SDBM_File', MYEXTLIB => $myextlib, - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? VERSION_FROM => 'SDBM_File.pm', DEFINE => $define, diff --git a/ext/Socket/Makefile.PL b/ext/Socket/Makefile.PL index 0746b67651..0389b70118 100644 --- a/ext/Socket/Makefile.PL +++ b/ext/Socket/Makefile.PL @@ -5,7 +5,6 @@ WriteMakefile( NAME => 'Socket', VERSION_FROM => 'Socket.pm', ($Config{libs} =~ /(-lsocks\S*)/ ? (LIBS => [ "$1" ] ) : ()), - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', # XXX remove later? realclean => {FILES=> 'const-c.inc const-xs.inc'}, ); diff --git a/ext/Sys-Hostname/Makefile.PL b/ext/Sys-Hostname/Makefile.PL index a0892f643e..029bc721b1 100644 --- a/ext/Sys-Hostname/Makefile.PL +++ b/ext/Sys-Hostname/Makefile.PL @@ -3,6 +3,5 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Sys::Hostname', VERSION_FROM => 'Hostname.pm', - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', ); diff --git a/ext/XS-APItest/Makefile.PL b/ext/XS-APItest/Makefile.PL index 59d35c937b..10ce8774ad 100644 --- a/ext/XS-APItest/Makefile.PL +++ b/ext/XS-APItest/Makefile.PL @@ -17,7 +17,6 @@ WriteMakefile( 'INC' => '-I.', # e.g., '-I. -I/usr/include/other' # Un-comment this if you add C files to link with later: # 'OBJECT' => '$(O_FILES)', # link all the C files too - MAN3PODS => {}, # Pods will be built by installman. realclean => {FILES => 'const-c.inc const-xs.inc'}, ); diff --git a/ext/XS-Typemap/Makefile.PL b/ext/XS-Typemap/Makefile.PL index ad02b78b49..3b1ff51bf7 100644 --- a/ext/XS-Typemap/Makefile.PL +++ b/ext/XS-Typemap/Makefile.PL @@ -2,7 +2,6 @@ use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'XS::Typemap', - MAN3PODS => {}, # Pods will be built by installman. 'VERSION_FROM' => 'Typemap.pm', 'dist' => { COMPRESS => "gzip -9f"}, OBJECT => 'stdio.o Typemap.o', diff --git a/ext/attrs/Makefile.PL b/ext/attrs/Makefile.PL index 86ed3f3935..fdff629456 100644 --- a/ext/attrs/Makefile.PL +++ b/ext/attrs/Makefile.PL @@ -2,6 +2,5 @@ use ExtUtils::MakeMaker; WriteMakefile( NAME => 'attrs', VERSION_FROM => 'attrs.pm', - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes' ); diff --git a/ext/mro/Makefile.PL b/ext/mro/Makefile.PL index 8ccd8873fb..71d5415ec1 100644 --- a/ext/mro/Makefile.PL +++ b/ext/mro/Makefile.PL @@ -6,5 +6,4 @@ WriteMakefile( NAME => 'mro', VERSION_FROM => 'mro.pm', # finds $VERSION ABSTRACT_FROM => 'mro.pm', # retrieve abstract from module - MAN3PODS => {}, AUTHOR => 'Brandon L. Black <blblack@gmail.com>'); diff --git a/ext/re/Makefile.PL b/ext/re/Makefile.PL index f00f4122dd..dbc414243f 100644 --- a/ext/re/Makefile.PL +++ b/ext/re/Makefile.PL @@ -9,7 +9,6 @@ my $defines = '-DPERL_EXT_RE_BUILD -DPERL_EXT_RE_DEBUG -DPERL_EXT'; WriteMakefile( NAME => 're', VERSION_FROM => 're.pm', - MAN3PODS => {}, # Pods will be built by installman. XSPROTOARG => '-noprototypes', OBJECT => $object, DEFINE => $defines, |