X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=ext%2Fthreads%2FMakefile.PL;h=34fdb9f9574d7647fb278f2ded898cec6708be09;hb=798b63bc924a07589315b3229311582adce06136;hp=ee994bb7084904dfd7ec73c641c37f41fd6cbc9c;hpb=3ab143769e84ecceef90e38e01a51f008592558c;p=p5sagit%2Fp5-mst-13.2.git diff --git a/ext/threads/Makefile.PL b/ext/threads/Makefile.PL index ee994bb..34fdb9f 100755 --- a/ext/threads/Makefile.PL +++ b/ext/threads/Makefile.PL @@ -58,7 +58,19 @@ 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, + }); } @@ -71,18 +83,6 @@ WriteMakefile( 'PM' => { 'threads.pm' => '$(INST_LIBDIR)/threads.pm', }, - 'PREREQ_PM' => { - 'strict' => 0, - 'warnings' => 0, - 'overload' => 0, - 'Config' => 0, - 'Carp' => 0, - 'XSLoader' => 0, - - 'ExtUtils::testlib' => 0, - 'Hash::Util' => 0, - 'IO::File' => 0, - }, 'INSTALLDIRS' => 'perl', ((ExtUtils::MakeMaker->VERSION() lt '6.25') ?