summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
authorGavin Carr <gonzai@users.sourceforge.net>2006-09-26 04:10:37 (GMT)
committerGavin Carr <gonzai@users.sourceforge.net>2006-09-26 04:10:37 (GMT)
commit3a58d586f935a35390196bbbb65b36d5c651fe93 (patch)
tree4ed74dec16c5e8d4a223f5aa80bb4e7a55f016d2 /Makefile.PL
parente548a22a92b3aa345f4a952fddb39cc693c35a70 (diff)
downloadmonitoring-plugin-perl-3a58d586f935a35390196bbbb65b36d5c651fe93.tar.gz
Update Nagios::Plugin with NP::Function wrapper methods, and extras.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1483 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index c25369f..2d45e43 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -5,7 +5,10 @@ use ExtUtils::MakeMaker;
5WriteMakefile( 5WriteMakefile(
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 => {Params::Validate => 0.24}, # e.g., Module::Name => 1.1 8 PREREQ_PM => {
9 Class::Struct => 0,
10 Params::Validate => 0.24,
11 }, # e.g., Module::Name => 1.1
9 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 12 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
10 (ABSTRACT_FROM => 'lib/Nagios/Plugin.pm', # retrieve abstract from module 13 (ABSTRACT_FROM => 'lib/Nagios/Plugin.pm', # retrieve abstract from module
11 AUTHOR => 'Nagios Plugin Development Team <nagiosplug-devel@lists.sourceforge.net>') : ()), 14 AUTHOR => 'Nagios Plugin Development Team <nagiosplug-devel@lists.sourceforge.net>') : ()),