X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=35d9b4429028815a8047166c27463e02254dd37a;hb=788a3738b30591768f1843f0b00d7a3cfd820358;hp=3ac11e8d4e8380891d8e6bcb1bc5525ecb46355f;hpb=7c87e9956212e10070c94f02caf0d9998e4cc433;p=apache2-authen-passphrase.git diff --git a/Makefile.PL b/Makefile.PL index 3ac11e8..35d9b44 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,4 +1,5 @@ use ExtUtils::MakeMaker; +use 5.014000; WriteMakefile( NAME => 'Apache2::Authen::Passphrase', @@ -9,12 +10,16 @@ WriteMakefile( LICENSE => 'perl', EXE_FILES => [ 'aap-passwd' ], PREREQ_PM => { - Apache2::RequestRec => 0, - Apache2::Access => 0, - Apache2::Const => 0, - Authen::Passphrase => 0, - Authen::Passphrase::BlowfishCrypt => 0, - IO::Prompter => 0, - YAML::Any => 0, + qw/Authen::Passphrase 0 + Authen::Passphrase::BlowfishCrypt 0 + IO::Prompter 0 + YAML::Any 0/, }, + META_MERGE => { + recommends => { + qw/Apache2::RequestRec 0 + Apache2::Access 0 + Apache2::Const 0/, + } + } );