X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=blobdiff_plain;f=Makefile.PL;h=4fc9c081337d073988d7bae09aa89b1ac381204a;hp=e7593bc1bf699df83e4c084ee0f4e5e38b9cba2c;hb=db6d23d40bf6edb7c10971395bbf4a6b04db6693;hpb=bb0e678043b356499d78475dc3825d9c9c2d192d diff --git a/Makefile.PL b/Makefile.PL index e7593bc..4fc9c08 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -53,17 +53,21 @@ my %PREREQ_PM = ( 'XSLoader' => 0, ); +my %BUILD_REQUIRES = ( + 'Config' => 0, + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 0, + 'constant' => 0, + %PREREQ_PM, +); + my %META = ( configure_requires => { 'Config' => 0, 'ExtUtils::MakeMaker' => 0, }, build_requires => { - 'Config' => 0, - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, - 'constant' => 0, - %PREREQ_PM, + %BUILD_REQUIRES, }, dynamic_config => 1, resources => { @@ -82,6 +86,7 @@ WriteMakefile( ABSTRACT_FROM => $file, PL_FILES => {}, @DEFINES, + BUILD_REQUIRES => \%BUILD_REQUIRES, PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008003, META_MERGE => \%META,