X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=config.w32;h=35a0dcbea280ffd6f69170d55817fa527ec91e98;hb=c8dff7011092296f9fcc12e68ad8eef18b19cdf4;hp=5411da120a9ff4d4c68d7c9f64ddd5c73cb84bc0;hpb=1c418a9e67b6b002fb0fa0616842cf92a54a108c;p=m6w6%2Fext-http diff --git a/config.w32 b/config.w32 index 5411da1..35a0dcb 100644 --- a/config.w32 +++ b/config.w32 @@ -55,11 +55,17 @@ if (PHP_HTTP != "no") { "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_request_body_api.c http_querystring_object.c "+ - "http_deflatestream_object.c http_inflatestream_object.c", + "http_deflatestream_object.c http_inflatestream_object.c "+ + "http_cookie_api.c http_querystring_api.c", null, "/I\"" + configure_module_dirname + "/phpstr\""); ADD_SOURCES(configure_module_dirname + "/phpstr", "phpstr.c", "http"); AC_DEFINE("HAVE_HTTP", 1, "Have extended HTTP support"); + AC_DEFINE("HTTP_SHARED_DEPS", 1, "Depend on shared extensions"); + + AC_DEFINE("HAVE_GETHOSTNAME", 1); + AC_DEFINE("HAVE_GETSERVBYPORT", 1); + AC_DEFINE("HAVE_GETSERVBYNAME", 1); if (PHP_DEBUG != "no") { ADD_FLAG("CFLAGS_HTTP", "/W3"); @@ -77,7 +83,7 @@ if (PHP_HTTP != "no") { if ((f = check_for_pecl_ext("hash")) || (f = check_for_main_ext("hash"))) { ADD_FLAG("CFLAGS_HTTP", "/I"+ f); - AC_DEFINE("HTTP_HAVE_EXT_HASH", 1, ""); + AC_DEFINE("HTTP_HAVE_PHP_HASH_H", 1, ""); ADD_EXTENSION_DEP("http", "hash", true); } } @@ -85,7 +91,11 @@ if (PHP_HTTP != "no") { if (PHP_SESSION != "no") { ADD_EXTENSION_DEP("http", "session", true); } - + + if (PHP_ICONV != "no") { + ADD_EXTENSION_DEP("http", "iconv", true); + } + CURL_LIB = PHP_DEBUG != "no" ? "libcurld.lib":"libcurl.lib"; if (CHECK_HEADER_ADD_INCLUDE("curl/curl.h", "CFLAGS_HTTP") && CHECK_HEADER_ADD_INCLUDE("openssl/crypto.h", "CFLAGS_HTTP") && @@ -99,6 +109,7 @@ 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("HAVE_CURL_GETFORMDATA", 1, ""); } else { WARNING("curl convenience functions not enabled; libraries and headers not found"); }