From b2f41a29a8e35559157619218e8978d4780c2f46 Mon Sep 17 00:00:00 2001 From: Jan-E Date: Thu, 24 Oct 2019 13:09:02 +0200 Subject: [PATCH] Config.w32: add curl dependent libs --- config.w32 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.w32 b/config.w32 index 89a4879..929faaa 100644 --- a/config.w32 +++ b/config.w32 @@ -110,10 +110,13 @@ if (PHP_HTTP != "no") { if (CHECK_HEADER_ADD_INCLUDE("curl/curl.h", "CFLAGS_HTTP") && CHECK_HEADER_ADD_INCLUDE("openssl/crypto.h", "CFLAGS_HTTP") && CHECK_LIB(CURL_LIB, "http", PHP_HTTP) && + CHECK_LIB("wldap32.lib", "http", PHP_HTTP) && + CHECK_LIB("libssh2.lib;libssh2_a.lib", "http", PHP_HTTP) && + CHECK_LIB("nghttp2.lib;nghttp2_a.lib", "http", PHP_HTTP) && + CHECK_LIB("normaliz.lib", "http", PHP_HTTP) && CHECK_LIB("libssl.lib;ssleay32.lib", "http", PHP_HTTP) && CHECK_LIB("libcrypto.lib;libeay32.lib", "http", PHP_HTTP) && CHECK_LIB("zlib.lib;zlib_a.lib", "http", PHP_HTTP) && - CHECK_LIB("libcurl_a.lib", "http", PHP_HTTP) && ADD_EXTENSION_DEP("http", "propro", true) && ADD_EXTENSION_DEP("http", "raphf", true) && CHECK_LIB("winmm.lib", "http", PHP_HTTP)) { -- 2.30.2