diff options
author | Peter Kokot <peterkokot@gmail.com> | 2019-07-21 00:40:59 +0200 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-07-21 00:40:59 +0200 |
commit | f5227c5863a79cb219902f32aaebacac77a6e133 (patch) | |
tree | 0e157eeedc6a77bd893ca9e0d0864485033513a3 | |
parent | a85e4d53367c9a4ccca09903dce3c7e30dcc04c7 (diff) | |
download | php-git-f5227c5863a79cb219902f32aaebacac77a6e133.tar.gz |
Move HAVE_SQLITE3_CLOSE_V2 to pdo_sqlite
Closes GH-4444
-rw-r--r-- | ext/pdo_sqlite/config.w32 | 1 | ||||
-rw-r--r-- | ext/sqlite3/config.w32 | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/config.w32 b/ext/pdo_sqlite/config.w32 index a1dec83703..1ad3b74e8c 100644 --- a/ext/pdo_sqlite/config.w32 +++ b/ext/pdo_sqlite/config.w32 @@ -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"); } diff --git a/ext/sqlite3/config.w32 b/ext/sqlite3/config.w32 index d81c970a04..41eccb5af9 100644 --- a/ext/sqlite3/config.w32 +++ b/ext/sqlite3/config.w32 @@ -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"); } |