From: Matt S Trout Date: Sat, 28 Jan 2006 19:34:15 +0000 (+0000) Subject: Moved DBI and DBD::SQLite to build_requires X-Git-Tag: v0.05005~79 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=049b0c859a41b82a06326f742ab8eb8c84f887f7;hp=00018e9db0da61e19450309a3c8fff451bb26332;p=dbsrgits%2FDBIx-Class.git Moved DBI and DBD::SQLite to build_requires --- diff --git a/Build.PL b/Build.PL index 63b9693..c879bf4 100644 --- a/Build.PL +++ b/Build.PL @@ -7,16 +7,18 @@ my %arguments = ( module_name => 'DBIx::Class', requires => { 'Data::Page' => 2.00, - 'DBI' => 1.40, 'Scalar::Util' => 0, 'SQL::Abstract' => 1.20, 'SQL::Abstract::Limit' => 0.101, - 'DBD::SQLite' => 1.08, 'Class::C3' => 0.07, 'Storable' => 0, 'Class::Data::Accessor' => 0.01, 'Carp::Clan' => 0, }, + build_requires => { + 'DBD::SQLite' => 1.08, + 'DBI' => 1.40, + }, recommends => { 'Data::UUID' => 0, 'Module::Find' => 0,