From: Wez Furlong Date: Wed, 9 Feb 2005 04:57:32 +0000 (+0000) Subject: update ready for release. X-Git-Tag: RELEASE_0_2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=229ea4bbfc36ba65865c767aee78cd559dd62435;p=php update ready for release. Disable dependency macro for compatibility with existing PHP 5.0.x releases. --- diff --git a/ext/pdo_sqlite/config.m4 b/ext/pdo_sqlite/config.m4 index 14159cf6d3..dea8627e99 100644 --- a/ext/pdo_sqlite/config.m4 +++ b/ext/pdo_sqlite/config.m4 @@ -111,5 +111,5 @@ EOF AC_CHECK_HEADERS(time.h) fi - PHP_ADD_EXTENSION_DEP(pdo_sqlite, pdo) +dnl PHP_ADD_EXTENSION_DEP(pdo_sqlite, pdo) fi diff --git a/ext/pdo_sqlite/package.xml b/ext/pdo_sqlite/package.xml index 6f731fe58f..90a6f68207 100755 --- a/ext/pdo_sqlite/package.xml +++ b/ext/pdo_sqlite/package.xml @@ -11,28 +11,27 @@ lead - + This extension provides an SQLite v3 driver for PDO. - SQLite V3 is NOT compatible with the bundled SQLite in PHP 5, but is a significant + SQLite V3 is NOT compatible with the bundled SQLite 2 in PHP 5, but is a significant step forwards, featuring complete utf-8 support, native support for blobs, native support for prepared statements with bound parameters and improved concurrency. PHP - alpha - 0.1 - 2004-09-19 + beta + 0.2 + 2005-02-09 You need to install the PDO core module before you can make use of this one. - You need to download and install SQLite V3 from http://sqlite.org to - make use of this driver. + This package includes a bundled SQLite 3 library. - There is no windows binary available yet. + Windows binary: http://snaps.php.net/win32/PECL_5_0/php_pdo_sqlite.dll @@ -150,8 +149,8 @@ - - + + diff --git a/ext/pdo_sqlite/pdo_sqlite.c b/ext/pdo_sqlite/pdo_sqlite.c index 1d77ed6d67..5be851c3be 100644 --- a/ext/pdo_sqlite/pdo_sqlite.c +++ b/ext/pdo_sqlite/pdo_sqlite.c @@ -31,7 +31,7 @@ #include "php_pdo_sqlite_int.h" #include "zend_exceptions.h" -#define PHP_PDO_SQLITE_MODULE_VERSION "0.1-dev" +#define PHP_PDO_SQLITE_MODULE_VERSION "0.2" /* {{{ pdo_sqlite_functions[] */ function_entry pdo_sqlite_functions[] = {