From c924dedb73430b0520e718c78ab61efd29888070 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Mon, 31 Jan 2011 12:47:28 +0000 Subject: [PATCH] Fixed bug #53795 (Connect Error from MySqli (mysqlnd) when using SSL) --- NEWS | 2 ++ ext/mysqlnd/config.w32 | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 9ad592e210..3929ac5acc 100644 --- a/NEWS +++ b/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 diff --git a/ext/mysqlnd/config.w32 b/ext/mysqlnd/config.w32 index 4a32cbcb9d..9f6ccc5e38 100644 --- a/ext/mysqlnd/config.w32 +++ b/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"); } -- 2.40.0