1use ExtUtils::MakeMaker;
2
3my $LAST_API_CHANGE = 0.08;
4
5eval { require Ima::DBI; };
6unless ($@) {    # Make sure we did find the module.
7	print <<"CHANGE_WARN" if $Ima::DBI::VERSION < $LAST_API_CHANGE;
8
9NOTE: There have been API changes between this version and any older
10than version $LAST_API_CHANGE!  Please read the Changes file if you
11are upgrading from a version of Ima::DBI older than $LAST_API_CHANGE.
12
13CHANGE_WARN
14}
15
16WriteMakefile(
17	NAME         => 'Ima::DBI',
18	VERSION_FROM => 'lib/Ima/DBI.pm',
19	PREREQ_PM    => {
20		'DBI'                      => 1.20,
21		'Class::Data::Inheritable' => 0.02,
22		'DBIx::ContextualFetch'    => 1.00,
23		'Test::More'               => 0.18,
24	},
25	(
26		$] > 5.005
27		? ()
28		: (
29			ABSTRACT_FROM => 'lib/Ima/DBI.pm',
30			AUTHOR        => 'Tony Bowden <kasei@tmtm.com>',
31		)
32	),
33
34);
35