From 5d2c0f29bf2558572b6bf996e71453fd954d57a0 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Sat, 4 Apr 2009 22:48:02 +0000 Subject: [PATCH] Adding a dependency on Test::NoWarnings and added build_requires entries for the Test:: modules --- Makefile.PL | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index cae3c68..dc77d88 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -191,8 +191,9 @@ WriteMakefile( ABSTRACT => 'Self Contained SQLite RDBMS in a DBI Driver', VERSION_FROM => 'lib/DBD/SQLite.pm', PREREQ_PM => { - 'DBI' => '1.43', - 'Test::More' => '0.42', + 'DBI' => '1.43', + 'Test::More' => '0.42', + 'Test::NoWarnings' => '0.081', }, OPTIONAL( '6.48', MIN_PERL_VERSION => '5.006', @@ -210,10 +211,15 @@ WriteMakefile( 'File::Spec' => (WINLIKE ? '3.27' : '0.82'), 'DBI' => '1.43', }, + build_requires => { + 'Test::More' => '0.42', + 'Test::NoWarnings' => '0.081', + }, resources => { - license => 'http://dev.perl.org/licenses/', - bugtracker => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBD-SQLite', - repository => 'http://svn.ali.as/cpan/trunk/DBD-SQLite', + license => 'http://dev.perl.org/licenses/', + bugtracker => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBD-SQLite', + repository => 'http://svn.ali.as/cpan/trunk/DBD-SQLite', + MailingList => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbd-sqlite', }, }, ),