1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

updated SQLite to 3.7.6.2

This commit is contained in:
Kenichi Ishigaki 2011-04-19 10:26:16 +00:00
parent 00ef3db378
commit 0c7bfca5bc
3 changed files with 7 additions and 7 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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