summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
authorGavin Carr <gonzai@users.sourceforge.net>2006-10-04 22:02:39 (GMT)
committerGavin Carr <gonzai@users.sourceforge.net>2006-10-04 22:02:39 (GMT)
commite63887eda6765e1059939ff9c89e4fb244b5819b (patch)
tree3ae2b11db96535bdbd7a8da60fde642a8fd80619 /Makefile.PL
parent579fdad51ca7c1d306ba040954864216b0e07050 (diff)
downloadmonitoring-plugin-perl-e63887eda6765e1059939ff9c89e4fb244b5819b.tar.gz
Fix NP shortname defaulting; downgrade version requirements.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1489 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 6da133a..275883f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,4 +1,4 @@
1use 5.008004; 1use 5.006;
2use ExtUtils::MakeMaker; 2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence 3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written. 4# the contents of the Makefile that is written.
@@ -6,10 +6,11 @@ WriteMakefile(
6 NAME => 'Nagios::Plugin', 6 NAME => 'Nagios::Plugin',
7 VERSION_FROM => 'lib/Nagios/Plugin/Functions.pm', # finds $VERSION 7 VERSION_FROM => 'lib/Nagios/Plugin/Functions.pm', # finds $VERSION
8 PREREQ_PM => { 8 PREREQ_PM => {
9 Class::Struct => 0, 9 Class::Struct => 0,
10 Params::Validate => 0.24, 10 Params::Validate => 0.24,
11 Class::Accessor => 0.22, 11 Class::Accessor => 0.22,
12 Test::More => 0.62, 12 Test::More => 0.62,
13 Carp => 0,
13 }, # e.g., Module::Name => 1.1 14 }, # e.g., Module::Name => 1.1
14 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 15 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
15 (ABSTRACT_FROM => 'lib/Nagios/Plugin.pm', # retrieve abstract from module 16 (ABSTRACT_FROM => 'lib/Nagios/Plugin.pm', # retrieve abstract from module