1use 5.008003;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5warn <<AMEN if $] < 5.005;
6
7Net::DNS::Check is based on Net::DNS, so please note this:
8Net::DNS has not been tested against perl v$]
9The author is confident that this package will function
10properly with older perls such as yours, but bugs may lurk.
11
12
13AMEN
14WriteMakefile(
15    NAME              => 'Net::DNS::Check',
16    VERSION_FROM      => 'lib/Net/DNS/Check.pm', # finds $VERSION
17    PREREQ_PM         => {
18		'Net::DNS'	=> 0.42,
19    },
20    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
21      (ABSTRACT  => 'Perl DNS Check Module', # retrieve abstract from module
22       AUTHOR         => 'Lorenzo Luconi Trombacchi <lorenzo.luconi@iit.cnr.it>') : ()),
23);
24
25