Browse Source

update ready for release.

Disable dependency macro for compatibility with existing PHP 5.0.x releases.
PHP-5.1
Wez Furlong 21 years ago
parent
commit
229ea4bbfc
  1. 2
      ext/pdo_sqlite/config.m4
  2. 21
      ext/pdo_sqlite/package.xml
  3. 2
      ext/pdo_sqlite/pdo_sqlite.c

2
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

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

2
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[] = {

Loading…
Cancel
Save