]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Put prerequisites in their own separate hash
authorVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 07:51:03 +0000 (09:51 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 07:51:03 +0000 (09:51 +0200)
Makefile.PL

index 8af049af2154724be40728604adce1f2272e2e24..3d526339fd455dc2d42bf77f5fabfeeed0d76593 100644 (file)
@@ -54,6 +54,13 @@ if ($^O eq 'MSWin32' && $^V lt v5.10.1) {
 
 my $dist = 'Variable-Magic';
 
+my %PREREQ_PM = (
+ 'Carp'     => 0,
+ 'Exporter' => 0,
+ 'XSLoader' => 0,
+ 'base'     => 0,
+);
+
 my %META = (
  configure_requires => {
   'Config'              => 0,
@@ -64,6 +71,7 @@ my %META = (
   'Config'              => 0,
   'ExtUtils::MakeMaker' => 0,
   'Test::More'          => 0,
+  %PREREQ_PM,
  },
  dynamic_config => 1,
  resources => {
@@ -82,12 +90,7 @@ WriteMakefile(
     ABSTRACT_FROM    => 'lib/Variable/Magic.pm',
     PL_FILES         => {},
     @DEFINES,
-    PREREQ_PM        => {
-        'Carp'     => 0,
-        'Exporter' => 0,
-        'XSLoader' => 0,
-        'base'     => 0,
-    },
+    PREREQ_PM        => \%PREREQ_PM,
     MIN_PERL_VERSION => 5.008,
     META_MERGE       => \%META,
     dist             => {