Skip to content

Commit a1ba300

Browse files
committed
Sync with recent changes to default libcurl build
1 parent ec110f1 commit a1ba300

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

ext/curl/config.w32

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,28 @@
33
ARG_WITH("curl", "cURL support", "no");
44

55
if (PHP_CURL != "no") {
6+
var ver_num = NaN;
7+
var f = PHP_PHP_BUILD + "/include/curl/curlver.h";
8+
if (FSO.FileExists(f)) {
9+
var reg = /LIBCURL_VERSION_NUM\s+(0x[a-z0-9]+)/gi;
10+
var m = reg.exec(file_get_contents(PHP_PHP_BUILD + "/include/curl/curlver.h"));
11+
if (!!m && m.length >= 2) {
12+
ver_num = parseInt(m[1]);
13+
}
14+
}
15+
616
if (CHECK_LIB("libcurl_a.lib;libcurl.lib", "curl", PHP_CURL) &&
717
CHECK_HEADER_ADD_INCLUDE("curl/easy.h", "CFLAGS_CURL") &&
818
SETUP_OPENSSL("curl", PHP_CURL) > 0 &&
919
CHECK_LIB("winmm.lib", "curl", PHP_CURL) &&
1020
CHECK_LIB("wldap32.lib", "curl", PHP_CURL) &&
1121
(((PHP_ZLIB=="no") && (CHECK_LIB("zlib_a.lib;zlib.lib", "curl", PHP_CURL))) ||
12-
(PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "curl", PHP_CURL)) || (PHP_ZLIB == "yes" && (!PHP_ZLIB_SHARED)))
22+
(PHP_ZLIB_SHARED && CHECK_LIB("zlib.lib", "curl", PHP_CURL)) || (PHP_ZLIB == "yes" && (!PHP_ZLIB_SHARED))) &&
23+
!isNaN(ver_num) &&
24+
(ver_num <= parseInt("0x073b00") || ver_num > parseInt("0x073b00") &&
25+
CHECK_LIB("normaliz.lib", "curl", PHP_CURL) &&
26+
CHECK_LIB("libssh2.lib", "curl", PHP_CURL) &&
27+
CHECK_LIB("nghttp2.lib", "curl", PHP_CURL))
1328
) {
1429
EXTENSION("curl", "interface.c multi.c share.c curl_file.c");
1530
AC_DEFINE('HAVE_CURL', 1, 'Have cURL library');

0 commit comments

Comments
 (0)