Subject: | dmake test fails on Win32 |
DBI::SQLite2 does not build on win32 when using dmake, so test fails.
Maybe it works with Microsoft's nmake, but I haven't tried.
The hack to make things fly is to edit t/1.t to use dbd::sqlite1 on win32.
if ($^O eq 'MSWin32') {
use Email::Store "dbi:SQLite:dbname=t/test.db";
} else {
use Email::Store "dbi:SQLite2:dbname=t/test.db";
}
This is a very nasty hack, but it works.