Make mod_perl optional
[apache2-authen-passphrase.git] / Makefile.PL
index 3ac11e8d4e8380891d8e6bcb1bc5525ecb46355f..35d9b4429028815a8047166c27463e02254dd37a 100644 (file)
@@ -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/,
+               }
+       }
 );
This page took 0.009756 seconds and 4 git commands to generate.