Subject: | won't install without SQLite |
Won't install without DBD::SQLite. This is upsetting for two reasons:
(1) It's supposed to be a database-independent module! I have a perfectly good mysql so it should install.
(2) The dependencies and code are broken:
(a) DBD::SQLite isn't listed as a dependency, it's just pulled in by the test program, so cpan can't pull it in for me.
(b) The test program thinks it's going to output an error message but it doesn't get that far because it doesn't compile
Checking if your kit is complete...
Looks good
Writing Makefile for Class::DBI::Plugin::Type
cp Type.pm blib/lib/Class/DBI/Plugin/Type.pm
Manifying blib/man3/Class::DBI::Plugin::Type.3pm
/usr/bin/make -- OK
Running make test
PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/usr/lib/perl/5.6.1 -I/usr/share/perl/5.6.1 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t
t/1....Can't locate DBD/SQLite.pm in @INC
====================================================
package DBI::Test;
use Test::More;
if (!require DBD::SQLite) {
plan skip_all => "Couldn't load DBD::SQLite";
}