X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=Makefile.PL;h=527cc354b68f6c3d03a7a7f069ab4c2d2f17af2c;hp=b9279479f76f2c58a499ee650198e5bed62e5b5a;hb=137cf86c33a87637bf9510266088d73a59823a30;hpb=0795f5538053670a03e594e27bd142b078053c1c diff --git a/Makefile.PL b/Makefile.PL index b927947..527cc35 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,6 +11,11 @@ if ($^O eq 'MSWin32' && $^V lt v5.9.0) { push @DEFINES, '-DI_MULTIPLICITY=0'; } +# Fork emulation got "fixed" in 5.10.1 +if ($^O eq 'MSWin32' && $^V lt v5.10.1) { + push @DEFINES, '-DI_FORKSAFE=0'; +} + @DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES; my $dist = 'indirect'; @@ -23,6 +28,7 @@ my %META = ( 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, }, + dynamic_config => 1, resources => { bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", homepage => "http://search.cpan.org/dist/$dist/",