diff options
author | Wez Furlong <wez@php.net> | 2005-02-09 04:57:32 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2005-02-09 04:57:32 +0000 |
commit | 229ea4bbfc36ba65865c767aee78cd559dd62435 (patch) | |
tree | 10822e962607e069c80dd585cb1642dc43bc9cc1 /ext/pdo_sqlite | |
parent | b9a951aa1ac76c483c0647d0aeac4a835ff20b51 (diff) | |
download | php-git-229ea4bbfc36ba65865c767aee78cd559dd62435.tar.gz |
update ready for release.
Disable dependency macro for compatibility with existing PHP 5.0.x releases.
Diffstat (limited to 'ext/pdo_sqlite')
-rw-r--r-- | ext/pdo_sqlite/config.m4 | 2 | ||||
-rwxr-xr-x | ext/pdo_sqlite/package.xml | 21 | ||||
-rw-r--r-- | ext/pdo_sqlite/pdo_sqlite.c | 2 |
3 files changed, 12 insertions, 13 deletions
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 @@ <role>lead</role>
</maintainer>
</maintainers>
- <configureoptions>
+ <!-- configureoptions>
<configureoption name="with-pdo-sqlite" prompt="Path to your sqlite3 install"/>
-</configureoptions>
+</configureoptions -->
<description>
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.
</description>
<license>PHP</license>
<release>
- <state>alpha</state>
- <version>0.1</version>
- <date>2004-09-19</date>
+ <state>beta</state>
+ <version>0.2</version>
+ <date>2005-02-09</date>
<notes>
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
</notes>
<filelist>
@@ -150,8 +149,8 @@ </filelist>
<deps>
- <dep type="php" rel="ge" version="5.0.1"/>
- <dep type="ext" rel="ge" name="pdo" version="0.1"/>
+ <dep type="php" rel="ge" version="5.0.3"/>
+ <dep type="ext" rel="ge" name="pdo" version="0.2"/>
</deps>
</release>
</package>
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[] = { |