Update pdo_sqlite to use the amalgamation, much easier to upgrade / maintain. Also kill useless PECL version tag in MINFO.

Will probably be chastised by Jani for doing branch first...
This commit is contained in:
Scott MacVicar 2008-07-24 00:24:03 +00:00
parent 54981e8c2e
commit f37a1316fe
6 changed files with 93006 additions and 54 deletions

View file

@ -95,12 +95,6 @@ PHP_MINFO_FUNCTION(pdo_sqlite)
{
php_info_print_table_start();
php_info_print_table_header(2, "PDO Driver for SQLite 3.x", "enabled");
php_info_print_table_row(2, "PECL Module version",
#if PDO_SQLITE_BUNDLED
"(bundled) "
#endif
PHP_PDO_SQLITE_MODULE_VERSION
" $Id$");
php_info_print_table_row(2, "SQLite Library", sqlite3_libversion());
php_info_print_table_end();
}