]> git.vpit.fr Git - perl/modules/autovivification.git/commitdiff
This module doesn't care bout MULTIPLICITY, so remove the relevant cruft from Makefile.PL
authorVincent Pit <vince@profvince.com>
Thu, 4 Mar 2010 12:25:15 +0000 (13:25 +0100)
committerVincent Pit <vince@profvince.com>
Thu, 4 Mar 2010 12:26:01 +0000 (13:26 +0100)
Thus dynamic_config can now be set to 0.

Makefile.PL

index a19c99a2cff4b04ec0fb86c63705c7fac2b3edd5..01f62934a7f22953ed2a952f86565c557a742711 100644 (file)
@@ -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,