mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -04:00
Adding a dependency on Test::NoWarnings and added build_requires entries for the Test:: modules
This commit is contained in:
parent
ca20f1a11c
commit
5d2c0f29bf
1 changed files with 11 additions and 5 deletions
16
Makefile.PL
16
Makefile.PL
|
@ -191,8 +191,9 @@ WriteMakefile(
|
||||||
ABSTRACT => 'Self Contained SQLite RDBMS in a DBI Driver',
|
ABSTRACT => 'Self Contained SQLite RDBMS in a DBI Driver',
|
||||||
VERSION_FROM => 'lib/DBD/SQLite.pm',
|
VERSION_FROM => 'lib/DBD/SQLite.pm',
|
||||||
PREREQ_PM => {
|
PREREQ_PM => {
|
||||||
'DBI' => '1.43',
|
'DBI' => '1.43',
|
||||||
'Test::More' => '0.42',
|
'Test::More' => '0.42',
|
||||||
|
'Test::NoWarnings' => '0.081',
|
||||||
},
|
},
|
||||||
OPTIONAL( '6.48',
|
OPTIONAL( '6.48',
|
||||||
MIN_PERL_VERSION => '5.006',
|
MIN_PERL_VERSION => '5.006',
|
||||||
|
@ -210,10 +211,15 @@ WriteMakefile(
|
||||||
'File::Spec' => (WINLIKE ? '3.27' : '0.82'),
|
'File::Spec' => (WINLIKE ? '3.27' : '0.82'),
|
||||||
'DBI' => '1.43',
|
'DBI' => '1.43',
|
||||||
},
|
},
|
||||||
|
build_requires => {
|
||||||
|
'Test::More' => '0.42',
|
||||||
|
'Test::NoWarnings' => '0.081',
|
||||||
|
},
|
||||||
resources => {
|
resources => {
|
||||||
license => 'http://dev.perl.org/licenses/',
|
license => 'http://dev.perl.org/licenses/',
|
||||||
bugtracker => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBD-SQLite',
|
bugtracker => 'http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBD-SQLite',
|
||||||
repository => 'http://svn.ali.as/cpan/trunk/DBD-SQLite',
|
repository => 'http://svn.ali.as/cpan/trunk/DBD-SQLite',
|
||||||
|
MailingList => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/dbd-sqlite',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
Loading…
Add table
Reference in a new issue