diff --git a/Changes b/Changes index 74fcc57..5827d32 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,7 @@ Changes for Perl extension DBD-SQLite 1.32_03 (or 1.33) to be released - - Updated to SQLite 3.7.6.1 (ISHIGAKI) + - Updated to SQLite 3.7.6.2 (ISHIGAKI) 1.32_02 Mon 7 Mar 2011 - Updated to SQLite 3.7.5 (ISHIGAKI) diff --git a/sqlite3.c b/sqlite3.c index 99cc80f..55f058c 100644 --- a/sqlite3.c +++ b/sqlite3.c @@ -1,6 +1,6 @@ /****************************************************************************** ** This file is an amalgamation of many separate C source files from SQLite -** version 3.7.6.1. By combining all the individual C code files into this +** version 3.7.6.2. By combining all the individual C code files into this ** single large file, the entire code can be compiled as a single translation ** unit. This allows many compilers to do optimizations that would not be ** possible if the files were compiled separately. Performance improvements @@ -650,9 +650,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.7.6.1" +#define SQLITE_VERSION "3.7.6.2" #define SQLITE_VERSION_NUMBER 3007006 -#define SQLITE_SOURCE_ID "2011-04-13 14:40:25 a35e83eac7b185f4d363d7fa51677f2fdfa27695" +#define SQLITE_SOURCE_ID "2011-04-17 17:25:17 154ddbc17120be2915eb03edc52af1225eb7cb5e" /* ** CAPI3REF: Run-Time Library Version Numbers @@ -24413,7 +24413,7 @@ static struct unix_syscall { sqlite3_syscall_ptr pDefault; /* Default value */ } aSyscall[] = { { "open", (sqlite3_syscall_ptr)open, 0 }, -#define osOpen ((int(*)(const char*,int,int))aSyscall[0].pCurrent) +#define osOpen ((int(*)(const char*,int,...))aSyscall[0].pCurrent) { "close", (sqlite3_syscall_ptr)close, 0 }, #define osClose ((int(*)(int))aSyscall[1].pCurrent) diff --git a/sqlite3.h b/sqlite3.h index 17e85fd..3b7eb94 100644 --- a/sqlite3.h +++ b/sqlite3.h @@ -107,9 +107,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.7.6.1" +#define SQLITE_VERSION "3.7.6.2" #define SQLITE_VERSION_NUMBER 3007006 -#define SQLITE_SOURCE_ID "2011-04-13 14:40:25 a35e83eac7b185f4d363d7fa51677f2fdfa27695" +#define SQLITE_SOURCE_ID "2011-04-17 17:25:17 154ddbc17120be2915eb03edc52af1225eb7cb5e" /* ** CAPI3REF: Run-Time Library Version Numbers