From 12974f71a93759140e5d5ebe835c54496efcc891 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Sun, 5 Apr 2009 19:29:16 +0000 Subject: [PATCH] Found the ACTUAL minimum DBI version we need, and confirming we build against it. --- Changes | 3 +++ Makefile.PL | 2 +- lib/DBD/SQLite.pm | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 187c502..46e7a94 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,9 @@ Changes for Perl extension DBD-SQLite. 1.19_10 Mon 6 Apr 2009 - A few more tests moved to Test::More (ADAMK) + - We need DBIXS_REVISION, which appeared in DBI 1.57. + Bumping up our dependency to match it and confirmed myself + that DBD::SQLite actually builds against 1.57 (ADAMK) - Resolved #40594: $sth->{NULLABLE} implementation (ISHIGAKI) - Resolved #29629: sqlite where length issue (actually this has been fixed before) (ISHIGAKI) diff --git a/Makefile.PL b/Makefile.PL index 5c11506..6876b79 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -210,7 +210,7 @@ WriteMakefile( configure_requires => { 'ExtUtils::MakeMaker' => '6.48', 'File::Spec' => (WINLIKE ? '3.27' : '0.82'), - 'DBI' => '1.43', + 'DBI' => '1.57', }, build_requires => { 'Test::More' => '0.42', diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index a791657..ca4a82b 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -2,7 +2,7 @@ package DBD::SQLite; use 5.00503; use strict; -use DBI 1.43 (); +use DBI 1.57 (); use DynaLoader (); use vars qw($VERSION @ISA);