diff options
author | Gavin Carr <gonzai@users.sourceforge.net> | 2007-02-08 05:16:15 +0000 |
---|---|---|
committer | Gavin Carr <gonzai@users.sourceforge.net> | 2007-02-08 05:16:15 +0000 |
commit | d56d5a0d2d4b29ac2a296bc39a7b80862a7f7e8f (patch) | |
tree | e57286162e8f13f98e268ef44867e8f90af2ff3c /Makefile.PL | |
parent | 9692fb72f6f428dbed4e107dd83fa906854babff (diff) | |
download | monitoring-plugin-perl-d56d5a0d2d4b29ac2a296bc39a7b80862a7f7e8f.tar.gz |
Add initial --default-opts implementation to Nagios::Plugin::Getopt.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/Nagios-Plugin/trunk@1616 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.PL b/Makefile.PL index f7f1131..63b36da 100644 --- a/Makefile.PL +++ b/Makefile.PL | |||
@@ -6,11 +6,15 @@ 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 | Params::Validate => 0.24, | 9 | Params::Validate => 0, |
10 | Class::Accessor => 0.22, | 10 | Class::Accessor => 0, |
11 | Test::More => 0.62, | 11 | Test::More => 0.62, |
12 | Carp => 0, | 12 | Carp => 0, |
13 | Test::Exception => 0, | 13 | Test::Exception => 0, |
14 | Config::Tiny => 0, | ||
15 | File::Spec => 0, | ||
16 | File::Basename => 0, | ||
17 | IO::File => 0, | ||
14 | }, # e.g., Module::Name => 1.1 | 18 | }, # e.g., Module::Name => 1.1 |
15 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 | 19 | ($] >= 5.005 ? ## Add these new keywords supported since 5.005 |
16 | (ABSTRACT_FROM => 'lib/Nagios/Plugin.pm', # retrieve abstract from module | 20 | (ABSTRACT_FROM => 'lib/Nagios/Plugin.pm', # retrieve abstract from module |