]> git.vpit.fr Git - perl/modules/Lexical-Types.git/commitdiff
Put prerequisites in their own separate hash
authorVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 08:00:08 +0000 (10:00 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 08:00:26 +0000 (10:00 +0200)
Makefile.PL

index 1b5d0ec56676c0012576650ade3ac24f305745b4..fd2d202823d8685019ec7f2ba06905ca91c30b4a 100644 (file)
@@ -15,6 +15,11 @@ if ($^O eq 'MSWin32' && $^V lt v5.9.0) {
 
 my $dist = 'Lexical-Types';
 
+my %PREREQ_PM = (
+ 'Carp'     => 0,
+ 'XSLoader' => 0,
+);
+
 my %META = (
  configure_requires => {
   'ExtUtils::MakeMaker' => 0,
@@ -23,6 +28,7 @@ my %META = (
   'ExtUtils::MakeMaker' => 0,
   'Test::More'          => 0,
   'constant'            => 0,
+  %PREREQ_PM,
  },
  dynamic_config => 1,
  resources => {
@@ -41,10 +47,7 @@ WriteMakefile(
     ABSTRACT_FROM    => 'lib/Lexical/Types.pm',
     PL_FILES         => {},
     @DEFINES,
-    PREREQ_PM        => {
-        'Carp'          => 0,
-        'XSLoader'      => 0,
-    },
+    PREREQ_PM        => \%PREREQ_PM,
     MIN_PERL_VERSION => 5.008,
     META_MERGE       => \%META,
     dist             => {