X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ext%2Fthreads%2FMakefile.PL;h=34fdb9f9574d7647fb278f2ded898cec6708be09;hb=798b63bc924a07589315b3229311582adce06136;hp=c10f0466dad6a56cfdda4d67111a8c01b7ab5012;hpb=f9b2e0c2e0fc66d047eefc879e3a32296c8da006;p=p5sagit%2Fp5-mst-13.2.git diff --git a/ext/threads/Makefile.PL b/ext/threads/Makefile.PL index c10f046..34fdb9f 100755 --- a/ext/threads/Makefile.PL +++ b/ext/threads/Makefile.PL @@ -58,22 +58,31 @@ if (grep { $_ eq 'PERL_CORE=1' } @ARGV) { die("No 'C' compiler found to build 'threads'\n"); } - push(@conditional_params, 'DEFINE' => '-DHAS_PPPORT_H'); + push(@conditional_params, 'DEFINE' => '-DHAS_PPPORT_H', + 'PREREQ_PM' => { + 'strict' => 0, + 'warnings' => 0, + 'overload' => 0, + 'Config' => 0, + 'Carp' => 0, + 'XSLoader' => 0, + + 'ExtUtils::testlib' => 0, + 'Hash::Util' => 0, + 'IO::File' => 0, + }); } # Create Makefile WriteMakefile( 'NAME' => 'threads', - 'AUTHOR' => 'Artur Bergman ', + 'AUTHOR' => 'Artur Bergman, Jerry D. Hedden ', 'VERSION_FROM' => 'threads.pm', 'ABSTRACT_FROM' => 'threads.pm', 'PM' => { 'threads.pm' => '$(INST_LIBDIR)/threads.pm', }, - 'PREREQ_PM' => { - 'XSLoader' => 0, - }, 'INSTALLDIRS' => 'perl', ((ExtUtils::MakeMaker->VERSION() lt '6.25') ?