Unnecessary pod2man calls in new extensions
Andy Dougherty [Thu, 21 Jun 2001 10:44:05 +0000 (06:44 -0400)]
Message-ID: <Pine.SOL.4.10.10106211040180.26439-100000@maxwell.phys.lafayette.edu>

p4raw-id: //depot/perl@10784

ext/Digest/MD5/Makefile.PL
ext/List/Util/Makefile.PL
ext/MIME/Base64/Makefile.PL
ext/PerlIO/Scalar/Makefile.PL
ext/PerlIO/Via/Makefile.PL
ext/Time/HiRes/Makefile.PL
ext/Time/Piece/Makefile.PL
ext/XS/Typemap/Makefile.PL

index d86c577..cbbd668 100644 (file)
@@ -14,6 +14,7 @@ unless ($Config{d_u32align}) {
 WriteMakefile(
     'NAME'        => 'Digest::MD5',
     'VERSION_FROM' => 'MD5.pm',
+    MAN3PODS    => {},  # Pods will be built by installman.
     @extra,
     'dist'         => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 );
index bc6dff6..e2b7be9 100644 (file)
@@ -2,6 +2,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
     VERSION_FROM    => "lib/List/Util.pm",
+    MAN3PODS    => {},  # Pods will be built by installman.
     NAME            => "List::Util",
 );
 
index f5b4cb9..da37853 100644 (file)
@@ -3,6 +3,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
     NAME        => 'MIME::Base64',
+    MAN3PODS    => {},  # Pods will be built by installman.
     VERSION_FROM => 'Base64.pm',
     dist         => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 );
index 81fe513..9d97e4a 100644 (file)
@@ -1,6 +1,7 @@
 use ExtUtils::MakeMaker;
 WriteMakefile(
        NAME            => "PerlIO::Scalar",
+       MAN3PODS    => {},  # Pods will be built by installman.
        VERSION_FROM    => 'Scalar.pm',
 );
 
index 568008e..d47ba93 100644 (file)
@@ -1,6 +1,7 @@
 use ExtUtils::MakeMaker;
 WriteMakefile(
        NAME            => "PerlIO::Via",
+       MAN3PODS    => {},  # Pods will be built by installman.
        VERSION_FROM    => 'Via.pm',
 );
 
index 6560420..b7c6459 100644 (file)
@@ -7,6 +7,7 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
     'NAME'        => 'Time::HiRes',
+    MAN3PODS    => {},  # Pods will be built by installman.
     'VERSION_FROM' => 'HiRes.pm',
 );
 
index 4aeb77d..6682c8d 100644 (file)
@@ -2,5 +2,6 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
     'NAME'     => 'Time::Piece',
+    MAN3PODS    => {},  # Pods will be built by installman.
     'VERSION_FROM' => 'Piece.pm',
 );
index 3b1ff51..ad02b78 100644 (file)
@@ -2,6 +2,7 @@ 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',