X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=01f62934a7f22953ed2a952f86565c557a742711;hb=accce1c3b3ae0a11c65c7d9e0e2faa5fdb4f2080;hp=a19c99a2cff4b04ec0fb86c63705c7fac2b3edd5;hpb=f5563da4d43d7f218b4624ad87d9e1909753590b;p=perl%2Fmodules%2Fautovivification.git diff --git a/Makefile.PL b/Makefile.PL index a19c99a..01f6293 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,15 +4,6 @@ use strict; use warnings; use ExtUtils::MakeMaker; -my @DEFINES; - -# Threads, Windows and 5.8.x don't seem to be best friends -if ($^O eq 'MSWin32' && $^V lt v5.9.0) { - push @DEFINES, '-DI_MULTIPLICITY=0'; -} - -@DEFINES = (DEFINE => join ' ', @DEFINES) if @DEFINES; - my $dist = 'autovivification'; (my $name = $dist) =~ s{-}{::}g; @@ -33,7 +24,7 @@ my %META = ( 'Test::More' => 0, %PREREQ_PM, }, - dynamic_config => 1, + dynamic_config => 0, resources => { bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", homepage => "http://search.cpan.org/dist/$dist/", @@ -49,7 +40,6 @@ WriteMakefile( VERSION_FROM => $file, ABSTRACT_FROM => $file, PL_FILES => {}, - @DEFINES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008, META_MERGE => \%META,