Move HAVE_SQLITE3_CLOSE_V2 to pdo_sqlite

Closes GH-4444
This commit is contained in:
Peter Kokot 2019-07-21 00:40:59 +02:00
parent a85e4d5336
commit f5227c5863
2 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,7 @@ if (PHP_PDO_SQLITE != "no") {
ADD_EXTENSION_DEP('pdo_sqlite', 'pdo');
AC_DEFINE("HAVE_SQLITE3_COLUMN_TABLE_NAME", 1, "have sqlite3_column_table_name");
AC_DEFINE("HAVE_SQLITE3_CLOSE_V2", 1, "have sqlite3_close_v2");
} else {
WARNING("pdo_sqlite not enabled; libraries and/or headers not found");
}

View File

@ -8,7 +8,6 @@ if (PHP_SQLITE3 != "no") {
AC_DEFINE("HAVE_SQLITE3", 1, "SQLite support");
AC_DEFINE("HAVE_SQLITE3_ERRSTR", 1, "have sqlite3_errstr function");
AC_DEFINE("HAVE_SQLITE3_CLOSE_V2", 1, "have sqlite3_close_v2");
} else {
WARNING("sqlite3 not enabled; libraries and/or headers not found");
}