diff options
author | Gavin Carr <gonzai@users.sourceforge.net> | 2006-10-04 22:02:39 +0000 |
---|---|---|
committer | Gavin Carr <gonzai@users.sourceforge.net> | 2006-10-04 22:02:39 +0000 |
commit | e63887eda6765e1059939ff9c89e4fb244b5819b (patch) | |
tree | 3ae2b11db96535bdbd7a8da60fde642a8fd80619 /Makefile.PL | |
parent | 579fdad51ca7c1d306ba040954864216b0e07050 (diff) | |
download | monitoring-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.PL | 11 |
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 @@ | |||
1 | use 5.008004; | 1 | use 5.006; |
2 | use ExtUtils::MakeMaker; | 2 | use 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 |