X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FScalar-Vec-Util.git;a=blobdiff_plain;f=Makefile.PL;h=e249569330d003dee2be8536d1c8cd6b408bb944;hp=69b1bfeba7c9b3ef662c42f07d6c2b2037d4a9d0;hb=80c5f5cb3ac557c026055ff72f7211f2532f79db;hpb=efead5be174cb5cc84bc5a5517aa9a7ec3acee48 diff --git a/Makefile.PL b/Makefile.PL index 69b1bfe..e249569 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -74,6 +74,13 @@ if (not is_little_endian()) { my $dist = 'Scalar-Vec-Util'; +my %PREREQ_PM = ( + 'Exporter' => 0, + 'Carp' => 0, + 'XSLoader' => 0, + 'base' => 0, +); + my %META = ( configure_requires => { 'Config' => 0, @@ -84,6 +91,7 @@ my %META = ( 'Config' => 0, 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, + %PREREQ_PM, }, dynamic_config => 1, resources => { @@ -103,12 +111,7 @@ WriteMakefile( PL_FILES => {}, C => \@C, @DEFINES, - PREREQ_PM => { - 'Exporter' => 0, - 'Carp' => 0, - 'XSLoader' => 0, - 'base' => 0, - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.006, META_MERGE => \%META, dist => {