Tests require recent version of File::Spec::Functions
[mafia.git] / Makefile.PL
index e1dcb273b305e97c4065ea7d3d95e5678297e1e7..f2bca8ced1b6d81f4b771ab26e11619ebf6d7bb5 100644 (file)
@@ -1,6 +1,8 @@
-use 5.014000;
+use 5.010001;
 use ExtUtils::MakeMaker;
 
+my $has_tr = $ExtUtils::MakeMaker::VERSION >= 6.64;
+
 WriteMakefile(
        NAME              => 'Mafia',
        VERSION_FROM      => 'lib/Mafia.pm',
@@ -9,6 +11,12 @@ WriteMakefile(
        MIN_PERL_VERSION  => '5.10.1',
        LICENSE           => 'perl',
        SIGN              => 1,
+       (TEST_REQUIRES => {
+               qw/File::Spec::Functions 3.62/,
+       }) x $has_tr,
+       (PREREQ_PM => {
+               qw/File::Spec::Functions 3.62/,
+       }) x !$has_tr,
        META_MERGE         => {
                dynamic_config => 0,
                resources      => {
This page took 0.009939 seconds and 4 git commands to generate.