Build PDO and SQLite as shared

This commit is contained in:
Edin Kadribasic 2005-09-24 15:13:13 +00:00
parent c81c189198
commit 4566f48777
5 changed files with 7 additions and 2 deletions

3
NEWS
View File

@ -1,6 +1,9 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? Aug 2005, PHP 5.1 Release Candidate 2
- Bundle SQLite extension as a shared module in Windows distribution. This
means that the Windows users would have to add php_extension=php_sqlite.dll
into their php.ini to enable SQLite functionality. (Edin)
- Changed "instanceof" and "catch" operators, is_a() and is_subclass_of()
functions to not call __autoload(). (Dmitry)
- Added support for class constants and static members for internal classes.

View File

@ -1,7 +1,7 @@
// $Id$
// vim:ft=javascript
ARG_ENABLE("pdo", "Enable PHP Data Objects support", "yes");
ARG_ENABLE("pdo", "Enable PHP Data Objects support", "no");
if (PHP_PDO != "no") {
EXTENSION('pdo', 'pdo.c pdo_dbh.c pdo_stmt.c pdo_sql_parser.c pdo_sqlstate.c');

View File

@ -1,7 +1,7 @@
// $Id$
// vim:ft=javascript
ARG_WITH("sqlite", "SQLite support", "yes");
ARG_WITH("sqlite", "SQLite support", "no");
if (PHP_SQLITE != "no") {
copy_and_subst(configure_module_dirname + "\\libsqlite\\src\\sqlite.h.in",

View File

@ -594,6 +594,7 @@ default_socket_timeout = 60
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
;extension=php_sqlite.dll
;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll

View File

@ -652,6 +652,7 @@ default_socket_timeout = 60
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
;extension=php_sqlite.dll
;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll