X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=8af049af2154724be40728604adce1f2272e2e24;hb=efc8e803d9ae5f496573df0a1102d310f2c5d4d5;hp=5d698c6c7ffdb548c78f2e773eb157137eb7ad01;hpb=a965d73efa5b98a6406bce6d65649fc16324afd3;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/Makefile.PL b/Makefile.PL index 5d698c6..8af049a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -45,6 +45,11 @@ if ($^O eq 'MSWin32' && $^V lt v5.9.0) { push @DEFINES, '-DVMG_MULTIPLICITY=0'; } +# Fork emulation got "fixed" in 5.10.1 +if ($^O eq 'MSWin32' && $^V lt v5.10.1) { + push @DEFINES, '-DVMG_FORKSAFE=0'; +} + @DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES; my $dist = 'Variable-Magic'; @@ -60,6 +65,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/",