diff options
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | ext/mysqli/config.m4 | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -9,6 +9,9 @@ PHP NEWS - Imap: . Fixed Bug #63126 DISABLE_AUTHENTICATOR ignores array (Remi) +- mysqli: + . Fixed bug #63361 missing header. (Remi) + - Pdo_sqlite: . Fixed Bug #63149 getColumnMeta should return the table name when system SQLite used. (Remi) diff --git a/ext/mysqli/config.m4 b/ext/mysqli/config.m4 index 6ec9334639..687b422898 100644 --- a/ext/mysqli/config.m4 +++ b/ext/mysqli/config.m4 @@ -81,5 +81,8 @@ if test "$PHP_MYSQLI" != "no"; then if test "$PHP_MYSQLI" = "yes" || test "$PHP_MYSQLI" = "mysqlnd"; then PHP_ADD_EXTENSION_DEP(mysqli, mysqlnd) AC_DEFINE([MYSQLI_USE_MYSQLND], 1, [Whether mysqlnd is enabled]) + PHP_INSTALL_HEADERS([ext/mysqli/mysqli_mysqlnd.h]) + else + PHP_INSTALL_HEADERS([ext/mysqli/mysqli_libmysql.h]) fi fi |
