[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h

2009-05-27 Thread Scott MacVicar
scottmacThu May 28 03:18:55 2009 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h 
  Log:
  sync SQLite 3.6.14.2
  
  
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.23r2=1.24diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.23 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.24
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.23Tue May 19 18:44:00 2009
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Thu May 28 03:18:54 2009
@@ -4,7 +4,7 @@
 
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.6.14.1.  By combining all the individual C code files into this 
+** version 3.6.14.2.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a one translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -21,7 +21,7 @@
 ** is also in a separate file.  This file contains only code for the core
 ** SQLite library.
 **
-** This amalgamation was generated on 2009-05-18 18:33:54 UTC.
+** This amalgamation was generated on 2009-05-25 12:49:40 UTC.
 */
 #define SQLITE_CORE 1
 #define SQLITE_AMALGAMATION 1
@@ -45,7 +45,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -74,7 +74,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 
 /*
@@ -532,7 +532,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -601,7 +601,7 @@
 **
 ** Requirements: [H10011] [H10014]
 */
-#define SQLITE_VERSION 3.6.14.1
+#define SQLITE_VERSION 3.6.14.2
 #define SQLITE_VERSION_NUMBER  3006014
 
 /*
@@ -6052,7 +6052,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -6635,7 +6635,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -6867,7 +6867,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -7259,7 +7259,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 
 #ifndef _PAGER_H_
@@ -7427,7 +7427,7 @@
 ** This header file defines the interface that the sqlite page cache
 ** subsystem. 
 **
-** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 
 #ifndef _PCACHE_H_
@@ -7595,7 +7595,7 @@
 ** This header file is #include-ed by sqliteInt.h and thus ends up
 ** being included by every source file.
 **
-** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 #ifndef _SQLITE_OS_H_
 #define _SQLITE_OS_H_
@@ -7871,7 +7871,7 @@
 ** Source files should #include the sqliteInt.h file and let that file
 ** include this one indirectly.
 **
-** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 
 
@@ -10185,7 +10185,7 @@
 **
 ** This file contains definitions of global variables and contants.
 **
-** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 scottmac Exp $
 */
 
 
@@ -10378,7 +10378,7 @@
 ** This module implements the sqlite3_status() interface and related
 ** functionality.
 **
-** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
+** $Id: sqlite3.c,v 1.24 2009/05/28 03:18:54 

[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2009-05-19 Thread Ilia Alshanetsky
iliaa   Tue May 19 18:44:01 2009 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h sqlite3ext.h 
  Log:
  MFB: libsqlite3 3.6.14.1 upgrade
  
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.22r2=1.23diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.22 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.23
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.22Thu May  7 12:41:25 2009
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Tue May 19 18:44:00 2009
@@ -4,7 +4,7 @@
 
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.6.14.  By combining all the individual C code files into this 
+** version 3.6.14.1.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a one translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -21,7 +21,7 @@
 ** is also in a separate file.  This file contains only code for the core
 ** SQLite library.
 **
-** This amalgamation was generated on 2009-05-07 01:56:00 UTC.
+** This amalgamation was generated on 2009-05-18 18:33:54 UTC.
 */
 #define SQLITE_CORE 1
 #define SQLITE_AMALGAMATION 1
@@ -45,7 +45,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -74,7 +74,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 
 /*
@@ -532,7 +532,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -601,7 +601,7 @@
 **
 ** Requirements: [H10011] [H10014]
 */
-#define SQLITE_VERSION 3.6.14
+#define SQLITE_VERSION 3.6.14.1
 #define SQLITE_VERSION_NUMBER  3006014
 
 /*
@@ -6052,7 +6052,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -6635,7 +6635,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -6867,7 +6867,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -7259,7 +7259,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 
 #ifndef _PAGER_H_
@@ -7427,7 +7427,7 @@
 ** This header file defines the interface that the sqlite page cache
 ** subsystem. 
 **
-** @(#) $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 
 #ifndef _PCACHE_H_
@@ -7595,7 +7595,7 @@
 ** This header file is #include-ed by sqliteInt.h and thus ends up
 ** being included by every source file.
 **
-** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 #ifndef _SQLITE_OS_H_
 #define _SQLITE_OS_H_
@@ -7871,7 +7871,7 @@
 ** Source files should #include the sqliteInt.h file and let that file
 ** include this one indirectly.
 **
-** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 
 
@@ -10185,7 +10185,7 @@
 **
 ** This file contains definitions of global variables and contants.
 **
-** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 
 
@@ -10378,7 +10378,7 @@
 ** This module implements the sqlite3_status() interface and related
 ** functionality.
 **
-** $Id: sqlite3.c,v 1.22 2009/05/07 12:41:25 iliaa Exp $
+** $Id: sqlite3.c,v 1.23 2009/05/19 18:44:00 iliaa Exp $
 */
 
 /*

[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2009-01-18 Thread Ilia Alshanetsky
iliaa   Sun Jan 18 18:03:37 2009 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h sqlite3ext.h 
  Log:
  
  MFB: Upgraded bundled sqlite3 to 3.6.10
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.16r2=1.17diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.16 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.17
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.16Mon Jan 12 18:46:57 2009
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Sun Jan 18 18:03:36 2009
@@ -4,7 +4,7 @@
 
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.6.8.  By combining all the individual C code files into this 
+** version 3.6.10.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a one translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -21,7 +21,7 @@
 ** is also in a separate file.  This file contains only code for the core
 ** SQLite library.
 **
-** This amalgamation was generated on 2009-01-12 15:45:58 UTC.
+** This amalgamation was generated on 2009-01-15 16:03:22 UTC.
 */
 #define SQLITE_CORE 1
 #define SQLITE_AMALGAMATION 1
@@ -45,7 +45,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -74,7 +74,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 
 /*
@@ -424,16 +424,22 @@
 ** where multiple cases go to the same block of code, testcase()
 ** can insure that all cases are evaluated.
 **
-** The TESTONLY macro is used to enclose variable declarations or
-** other bits of code that are needed to support the arguments
-** within testcase() macros.
 */
 #ifdef SQLITE_COVERAGE_TEST
 SQLITE_PRIVATE   void sqlite3Coverage(int);
 # define testcase(X)  if( X ){ sqlite3Coverage(__LINE__); }
-# define TESTONLY(X)  X
 #else
 # define testcase(X)
+#endif
+
+/*
+** The TESTONLY macro is used to enclose variable declarations or
+** other bits of code that are needed to support the arguments
+** within testcase() and assert() macros.
+*/
+#if !defined(NDEBUG) || defined(SQLITE_COVERAGE_TEST)
+# define TESTONLY(X)  X
+#else
 # define TESTONLY(X)
 #endif
 
@@ -526,7 +532,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -603,8 +609,8 @@
 **  with the value (X*100 + Y*1000 + Z) where X, Y, and Z
 **  are the major version, minor version, and release number.
 */
-#define SQLITE_VERSION 3.6.8
-#define SQLITE_VERSION_NUMBER  3006008
+#define SQLITE_VERSION 3.6.10
+#define SQLITE_VERSION_NUMBER  3006010
 
 /*
 ** CAPI3REF: Run-Time Library Version Numbers {H10020} S60100
@@ -7249,7 +7255,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -7805,7 +7811,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -8037,7 +8043,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -8430,7 +8436,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 
 #ifndef _PAGER_H_
@@ -8580,7 +8586,7 @@
 ** This header file defines the interface that the sqlite page cache
 ** subsystem. 
 **
-** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
+** @(#) $Id: sqlite3.c,v 1.17 2009/01/18 18:03:36 iliaa Exp $
 */
 
 #ifndef 

[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2009-01-12 Thread Scott MacVicar
scottmacMon Jan 12 18:46:59 2009 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h sqlite3ext.h 
  Log:
  Update sqlite to 3.6.8
  
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.15r2=1.16diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.15 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.16
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.15Mon Jan 12 17:15:07 2009
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Mon Jan 12 18:46:57 2009
@@ -21,7 +21,7 @@
 ** is also in a separate file.  This file contains only code for the core
 ** SQLite library.
 **
-** This amalgamation was generated on 2009-01-12 15:48:39 UTC.
+** This amalgamation was generated on 2009-01-12 15:45:58 UTC.
 */
 #define SQLITE_CORE 1
 #define SQLITE_AMALGAMATION 1
@@ -45,7 +45,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -74,7 +74,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 
 /*
@@ -526,7 +526,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -7249,7 +7249,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -7805,7 +7805,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -8037,7 +8037,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -8430,7 +8430,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 
 #ifndef _PAGER_H_
@@ -8580,7 +8580,7 @@
 ** This header file defines the interface that the sqlite page cache
 ** subsystem. 
 **
-** @(#) $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 
 #ifndef _PCACHE_H_
@@ -8748,7 +8748,7 @@
 ** This header file is #include-ed by sqliteInt.h and thus ends up
 ** being included by every source file.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #ifndef _SQLITE_OS_H_
 #define _SQLITE_OS_H_
@@ -9030,7 +9030,7 @@
 ** Source files should #include the sqliteInt.h file and let that file
 ** include this one indirectly.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 
 
@@ -11195,7 +11195,7 @@
 **
 ** This file contains definitions of global variables and contants.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 
 
@@ -11302,7 +11302,7 @@
 ** This module implements the sqlite3_status() interface and related
 ** functionality.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 
 /*
@@ -11429,7 +11429,7 @@
 ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
 ** All other code has file scope.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 **
 ** SQLite processes all times and dates as Julian Day numbers.  The
 ** dates and times are stored as the number of days since noon
@@ -12514,7 +12514,7 @@
 ** This file contains OS interface code that is common to all
 ** architectures.
 **
-** $Id: sqlite3.c,v 1.15 2009/01/12 17:15:07 iliaa Exp $
+** $Id: sqlite3.c,v 1.16 2009/01/12 18:46:57 scottmac Exp $
 */
 #define _SQLITE_OS_C_ 1
 #undef _SQLITE_OS_C_
@@ -12791,7 +12791,7 @@
 **
 

Re: [PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2009-01-12 Thread Ilia Alshanetsky

Heh, I did that upgrade not an hour ago.


On 12-Jan-09, at 1:46 PM, Scott MacVicar wrote:


scottmacMon Jan 12 18:46:59 2009 UTC

 Modified files:
   /php-src/ext/sqlite3/libsqlite   sqlite3.c sqlite3.h sqlite3ext.h
 Log:
 Update sqlite to 3.6.8

scottmac-20090112184659.txt--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Ilia Alshanetsky





--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2009-01-12 Thread Scott MacVicar

Sorry, never expected anyone else to be changing those.

Scott

On 12 Jan 2009, at 19:05, Ilia Alshanetsky wrote:


Heh, I did that upgrade not an hour ago.


On 12-Jan-09, at 1:46 PM, Scott MacVicar wrote:


scottmacMon Jan 12 18:46:59 2009 UTC

Modified files:
  /php-src/ext/sqlite3/libsqlitesqlite3.c sqlite3.h sqlite3ext.h
Log:
Update sqlite to 3.6.8

scottmac-20090112184659.txt--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Ilia Alshanetsky







--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2008-11-27 Thread Scott MacVicar
scottmacThu Nov 27 08:41:31 2008 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h sqlite3ext.h 
  Log:
  Update libsqlite to 3.6.6.2
  
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.12r2=1.13diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.12 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.13
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.12Tue Nov 25 23:53:33 2008
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Thu Nov 27 08:40:50 2008
@@ -4,7 +4,7 @@
 
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.6.6.1.  By combining all the individual C code files into this 
+** version 3.6.6.2.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a one translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -21,7 +21,7 @@
 ** is also in a separate file.  This file contains only code for the core
 ** SQLite library.
 **
-** This amalgamation was generated on 2008-11-22 14:31:32 UTC.
+** This amalgamation was generated on 2008-11-26 17:54:40 UTC.
 */
 #define SQLITE_CORE 1
 #define SQLITE_AMALGAMATION 1
@@ -45,7 +45,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -74,7 +74,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 
 /*
@@ -487,7 +487,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -564,7 +564,7 @@
 **  with the value (X*100 + Y*1000 + Z) where X, Y, and Z
 **  are the major version, minor version, and release number.
 */
-#define SQLITE_VERSION 3.6.6.1
+#define SQLITE_VERSION 3.6.6.2
 #define SQLITE_VERSION_NUMBER  3006006
 
 /*
@@ -7202,7 +7202,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -7753,7 +7753,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -7984,7 +7984,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -8375,7 +8375,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 
 #ifndef _PAGER_H_
@@ -8521,7 +8521,7 @@
 ** This header file defines the interface that the sqlite page cache
 ** subsystem. 
 **
-** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** @(#) $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 
 #ifndef _PCACHE_H_
@@ -8689,7 +8689,7 @@
 ** This header file is #include-ed by sqliteInt.h and thus ends up
 ** being included by every source file.
 **
-** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 #ifndef _SQLITE_OS_H_
 #define _SQLITE_OS_H_
@@ -8971,7 +8971,7 @@
 ** Source files should #include the sqliteInt.h file and let that file
 ** include this one indirectly.
 **
-** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 
 
@@ -11071,7 +11071,7 @@
 **
 ** This file contains definitions of global variables and contants.
 **
-** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
+** $Id: sqlite3.c,v 1.13 2008/11/27 08:40:50 scottmac Exp $
 */
 
 
@@ -11159,7 +11159,7 @@
 ** This module implements the sqlite3_status() interface and related
 ** 

[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2008-11-25 Thread Ilia Alshanetsky
iliaa   Tue Nov 25 23:53:34 2008 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h sqlite3ext.h 
  Log:
  
  MFB: Upgraded bundled sqlite to version 3.6.6.1.
  
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.11r2=1.12diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.11 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.12
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.11Sat Nov 22 13:46:17 2008
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Tue Nov 25 23:53:33 2008
@@ -4,7 +4,7 @@
 
 /**
 ** This file is an amalgamation of many separate C source files from SQLite
-** version 3.6.6.  By combining all the individual C code files into this 
+** version 3.6.6.1.  By combining all the individual C code files into this 
 ** single large file, the entire code can be compiled as a one translation
 ** unit.  This allows many compilers to do optimizations that would not be
 ** possible if the files were compiled separately.  Performance improvements
@@ -21,7 +21,7 @@
 ** is also in a separate file.  This file contains only code for the core
 ** SQLite library.
 **
-** This amalgamation was generated on 2008-11-19 21:08:14 UTC.
+** This amalgamation was generated on 2008-11-22 14:31:32 UTC.
 */
 #define SQLITE_CORE 1
 #define SQLITE_AMALGAMATION 1
@@ -45,7 +45,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -74,7 +74,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 
 /*
@@ -487,7 +487,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -564,7 +564,7 @@
 **  with the value (X*100 + Y*1000 + Z) where X, Y, and Z
 **  are the major version, minor version, and release number.
 */
-#define SQLITE_VERSION 3.6.6
+#define SQLITE_VERSION 3.6.6.1
 #define SQLITE_VERSION_NUMBER  3006006
 
 /*
@@ -7202,7 +7202,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -7753,7 +7753,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -7984,7 +7984,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -8375,7 +8375,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 
 #ifndef _PAGER_H_
@@ -8521,7 +8521,7 @@
 ** This header file defines the interface that the sqlite page cache
 ** subsystem. 
 **
-** @(#) $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 
 #ifndef _PCACHE_H_
@@ -8689,7 +8689,7 @@
 ** This header file is #include-ed by sqliteInt.h and thus ends up
 ** being included by every source file.
 **
-** $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 #ifndef _SQLITE_OS_H_
 #define _SQLITE_OS_H_
@@ -8971,7 +8971,7 @@
 ** Source files should #include the sqliteInt.h file and let that file
 ** include this one indirectly.
 **
-** $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 
 
@@ -11071,7 +11071,7 @@
 **
 ** This file contains definitions of global variables and contants.
 **
-** $Id: sqlite3.c,v 1.11 2008/11/22 13:46:17 pajoye Exp $
+** $Id: sqlite3.c,v 1.12 2008/11/25 23:53:33 iliaa Exp $
 */
 
 
@@ -11159,7 +11159,7 @@
 ** This module implements the sqlite3_status() interface and related
 ** functionality.
 

RE: [PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2008-07-31 Thread Ford, Mike
On 31 July 2008 01:56, Jani Taskinen advised:

 Scott MacVicar kirjoitti:
 scottmac Thu Jul 31 00:46:22 2008 UTC
 
   Modified files:
 /php-src/ext/sqlite3/libsqlite   sqlite3.c sqlite3.h sqlite3ext.h

   Log: Resync libsqlite files from amalgamation. Save the kittens, no
 EOL mess. 
 
 
 Eh..you just changed some $Header$ and $Id$ stuff? :D
 Was it really worth it? ;)
 
 --Jani
 
 p.s. Kittens are doomed, bunnies are safe. (I really hate cats..)

Young rabbits are also called kittens ... ;)

Cheers!

Mike

 --
Mike Ford,  Electronic Information Developer,
C507, Leeds Metropolitan University, Civic Quarter Campus, 
Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom
Email: [EMAIL PROTECTED]
Tel: +44 113 812 4730


To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm

--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2008-07-30 Thread Scott MacVicar
scottmacThu Jul 31 00:46:22 2008 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite  sqlite3.c sqlite3.h sqlite3ext.h 
  Log:
  Resync libsqlite files from amalgamation. Save the kittens, no EOL mess.
  
  
  http://cvs.php.net/viewvc.cgi/php-src/ext/sqlite3/libsqlite/sqlite3.c?r1=1.3r2=1.4diff_format=u
Index: php-src/ext/sqlite3/libsqlite/sqlite3.c
diff -u php-src/ext/sqlite3/libsqlite/sqlite3.c:1.3 
php-src/ext/sqlite3/libsqlite/sqlite3.c:1.4
--- php-src/ext/sqlite3/libsqlite/sqlite3.c:1.3 Mon Jul 28 09:11:12 2008
+++ php-src/ext/sqlite3/libsqlite/sqlite3.c Thu Jul 31 00:46:21 2008
@@ -41,7 +41,7 @@
 *
 ** Internal interface definitions for SQLite.
 **
-** @(#) $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 #ifndef _SQLITEINT_H_
 #define _SQLITEINT_H_
@@ -70,7 +70,7 @@
 ** 
 ** This file defines various limits of what SQLite can process.
 **
-** @(#) $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 /*
@@ -436,7 +436,7 @@
 ** the version number) and changes its name to sqlite3.h as
 ** part of the build process.
 **
-** @(#) $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -6061,7 +6061,7 @@
 ** This is the header file for the generic hash-table implemenation
 ** used in SQLite.
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 #ifndef _SQLITE_HASH_H_
 #define _SQLITE_HASH_H_
@@ -6578,7 +6578,7 @@
 ** subsystem.  See comments in the source code for a detailed description
 ** of what each interface routine does.
 **
-** @(#) $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 #ifndef _BTREE_H_
 #define _BTREE_H_
@@ -6797,7 +6797,7 @@
 ** or VDBE.  The VDBE implements an abstract machine that runs a
 ** simple program to access and modify the underlying database.
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 #ifndef _SQLITE_VDBE_H_
 #define _SQLITE_VDBE_H_
@@ -7180,7 +7180,7 @@
 ** subsystem.  The page cache subsystem reads and writes a file a page
 ** at a time and provides a journal for rollback.
 **
-** @(#) $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** @(#) $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 #ifndef _PAGER_H_
@@ -7603,7 +7603,7 @@
 ** Source files should #include the sqliteInt.h file and let that file
 ** include this one indirectly.
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 
@@ -9481,7 +9481,7 @@
 ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
 ** All other code has file scope.
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 **
 ** SQLite processes all times and dates as Julian Day numbers.  The
 ** dates and times are stored as the number of days since noon
@@ -10971,7 +10971,7 @@
 ** This file contains the C functions that implement a memory
 ** allocation subsystem for use by SQLite.  
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 /*
@@ -11208,7 +11208,7 @@
 ** This file contains the C functions that implement a memory
 ** allocation subsystem for use by SQLite.  
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 /*
@@ -11699,7 +11699,7 @@
 ** This version of the memory allocation subsystem is used if
 ** and only if SQLITE_MEMORY_SIZE is defined.
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 /*
@@ -12354,7 +12354,7 @@
 ** This version of the memory allocation subsystem is used if
 ** and only if SQLITE_POW2_MEMORY_SIZE is defined.
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 /*
@@ -12866,7 +12866,7 @@
 ** implementation is suitable for testing.
 ** debugging purposes
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 #ifdef SQLITE_MUTEX_NOOP_DEBUG
@@ -12986,7 +12986,7 @@
 *
 ** This file contains the C functions that implement mutexes for OS/2
 **
-** $Id: sqlite3.c,v 1.3 2008/07/28 09:11:12 pajoye Exp $
+** $Id: sqlite3.c,v 1.4 2008/07/31 00:46:21 scottmac Exp $
 */
 
 /*
@@ -13234,7 +13234,7 @@
 

Re: [PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2008-07-30 Thread Jani Taskinen

Scott MacVicar kirjoitti:

scottmacThu Jul 31 00:46:22 2008 UTC

  Modified files:  
/php-src/ext/sqlite3/libsqlite	sqlite3.c sqlite3.h sqlite3ext.h 
  Log:

  Resync libsqlite files from amalgamation. Save the kittens, no EOL mess.
  


Eh..you just changed some $Header$ and $Id$ stuff? :D
Was it really worth it? ;)

--Jani

p.s. Kittens are doomed, bunnies are safe. (I really hate cats..)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] cvs: php-src /ext/sqlite3/libsqlite sqlite3.c sqlite3.h sqlite3ext.h

2008-07-30 Thread Scott MacVicar

On 31 Jul 2008, at 01:55, Jani Taskinen wrote:


Scott MacVicar kirjoitti:

scottmacThu Jul 31 00:46:22 2008 UTC
 Modified files:  /php-src/ext/sqlite3/libsqlite	 
sqlite3.c sqlite3.h sqlite3ext.h   Log:
 Resync libsqlite files from amalgamation. Save the kittens, no EOL  
mess.




Eh..you just changed some $Header$ and $Id$ stuff? :D
Was it really worth it? ;)

--Jani

p.s. Kittens are doomed, bunnies are safe. (I really hate cats..)



Liz said there was some EOL thing stopping Windows from building.  
Maybe there wasn't...


Scott

--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php