From 9a1b0361b84c77b093cccf584b3b310fc2ffccd9 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 31 Mar 2007 02:56:44 +0200 Subject: [PATCH] makefile cleanup Also drops perl <5.5 support, since PLP requires 5.6 anyway. --- Makefile.PL | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 6d31f93..e452030 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,15 @@ +use 5.006; +use strict; + use ExtUtils::MakeMaker; + # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. + WriteMakefile( - 'NAME' => 'PLP', - 'VERSION_FROM' => 'PLP.pm', # finds $VERSION - 'PREREQ_PM' => { }, # e.g., Module::Name => 1.1 - ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'PLP.pm', # retrieve abstract from module - AUTHOR => 'Mischa POSLAWSKY ') : ()), + NAME => 'PLP', + VERSION_FROM => 'PLP.pm', + PREREQ_PM => {}, + ABSTRACT_FROM => 'PLP.pm', + AUTHOR => 'Mischa POSLAWSKY ', ); -- 2.30.0