Browse Source

Fixed bug #53795 (Connect Error from MySqli (mysqlnd) when using SSL)

pull/12/head
Kalle Sommer Nielsen 15 years ago
parent
commit
c924dedb73
  1. 2
      NEWS
  2. 1
      ext/mysqlnd/config.w32

2
NEWS

@ -73,6 +73,8 @@
- MySQL Improved extension:
. Added 'db' and 'catalog' keys to the field fetching functions (FR #39847).
(Kalle)
. Fixed bug #53795 (Connect Error from MySqli (mysqlnd) when using SSL).
(Kalle)
. Fixed bug #53503 (mysqli::query returns false after successful LOAD DATA
query). (Kalle, Andrey)
. Fixed bug #53425 (mysqli_real_connect() ignores client flags when built to

1
ext/mysqlnd/config.w32

@ -24,6 +24,7 @@ if (PHP_MYSQLND != "no") {
(PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "mysqlnd", PHP_MYSQLND)) || (PHP_ZLIB == "yes" && (!PHP_ZLIB_SHARED)))
{
AC_DEFINE("MYSQLND_COMPRESSION_ENABLED", 1, "Compression support");
AC_DEFINE("MYSQLND_SSL_SUPPORTED", 1, "SSL support");
}
PHP_INSTALL_HEADERS("", "ext/mysqlnd");
}

Loading…
Cancel
Save