X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=config.w32;h=911443c44806252a40e4e6eb8dfc1d0300752fe4;hb=0ecd173659b63e77e47271e5bd521599cd9e500f;hp=503e7aeeaf5334bffe4ad2aa3933144a38223aa0;hpb=3fd3e1157ac9c7770b288cced2b0f86f9977c38f;p=m6w6%2Fext-http diff --git a/config.w32 b/config.w32 index 503e7ae..911443c 100644 --- a/config.w32 +++ b/config.w32 @@ -54,7 +54,8 @@ if (PHP_HTTP != "no") { "http_request_api.c http_date_api.c http_headers_api.c "+ "http_message_api.c http_send_api.c http_url_api.c "+ "http_info_api.c http_request_method_api.c http_encoding_api.c "+ - "http_filter_api.c", + "http_filter_api.c http_request_body_api.c http_querystring_object.c "+ + "http_deflatestream_object.c http_inflatestream_object.c", null, "/I\"" + configure_module_dirname + "/phpstr\""); ADD_SOURCES(configure_module_dirname + "/phpstr", "phpstr.c", "http"); @@ -64,7 +65,7 @@ if (PHP_HTTP != "no") { ADD_FLAG("CFLAGS_HTTP", "/W3"); } - if (CHECK_HEADER_ADD_INCLUDE('zlib.h', 'CFLAGS_HTTP')) { + if (CHECK_HEADER_ADD_INCLUDE('zlib.h', 'CFLAGS_HTTP', '..\\zlib;' + php_usual_include_suspects)) { AC_DEFINE('HTTP_HAVE_ZLIB', 1, "Have zlib library"); ADD_FLAG("LDFLAGS_HTTP", "/FORCE:MULTIPLE"); } else { @@ -80,6 +81,10 @@ if (PHP_HTTP != "no") { ADD_EXTENSION_DEP("http", "hash", true); } } + + if (PHP_SESSION != "no") { + ADD_EXTENSION_DEP("http", "session", true); + } CURL_LIB = PHP_DEBUG != "no" ? "libcurld.lib":"libcurl.lib"; if (CHECK_HEADER_ADD_INCLUDE("curl/curl.h", "CFLAGS_HTTP") && @@ -94,7 +99,6 @@ if (PHP_HTTP != "no") { AC_DEFINE("HAVE_CURL_MULTI_STRERROR", 1, ""); AC_DEFINE("HAVE_CURL_EASY_STRERROR", 1, ""); AC_DEFINE("HAVE_CURL_EASY_RESET", 1, ""); - AC_DEFINE("CURL_STATICLIB", 1, ""); } else { WARNING("curl convenience functions not enabled; libraries and headers not found"); }