From: Andy Dougherty Date: Thu, 25 Oct 2001 09:56:57 +0000 (-0400) Subject: Omit needless calls to pod2man (perl@12641) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0665918ffddc962cb92a35dea741be5562a7954b;p=p5sagit%2Fp5-mst-13.2.git Omit needless calls to pod2man (perl@12641) Message-ID: p4raw-id: //depot/perl@12644 --- diff --git a/ext/I18N/Langinfo/Makefile.PL b/ext/I18N/Langinfo/Makefile.PL index 2c211cc..5015fce 100644 --- a/ext/I18N/Langinfo/Makefile.PL +++ b/ext/I18N/Langinfo/Makefile.PL @@ -12,6 +12,7 @@ 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 # Without this the constants xs files are spotted, and cause rules to be # added to delete the similarly named C files, which isn't what we want. XS => {'Langinfo.xs' => 'Langinfo.c'}, diff --git a/ext/threads/Makefile.PL b/ext/threads/Makefile.PL index 1ab8bc5..e2bf177 100755 --- a/ext/threads/Makefile.PL +++ b/ext/threads/Makefile.PL @@ -17,6 +17,7 @@ WriteMakefile( ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'threads.pm', # retrieve abstract from module AUTHOR => 'Artur Bergman ') : ()), + 'MAN3PODS' => {}, # Pods will be built by installman 'LIBS' => [''], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' # Insert -I. if you add *.h files later: diff --git a/ext/threads/shared/Makefile.PL b/ext/threads/shared/Makefile.PL index 8587906..3a4c6e3 100755 --- a/ext/threads/shared/Makefile.PL +++ b/ext/threads/shared/Makefile.PL @@ -16,6 +16,7 @@ WriteMakefile( ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'shared.pm', # retrieve abstract from module AUTHOR => 'Arthur Bergman ') : ()), + 'MAN3PODS' => {}, # Pods will be built by installman 'LIBS' => [''], # e.g., '-lm' 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' # Insert -I. if you add *.h files later: