X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=config.w32;h=d515e5c5209e877b20a3dca12b4537ba7a3b6e7f;hp=c07e9d25116c9f12484413a8a2ce228d8471c073;hb=01300e3808fec53def73a410233f68f36f292097;hpb=50343c32560e80c491911b107fab8217a35850eb diff --git a/config.w32 b/config.w32 index c07e9d2..d515e5c 100644 --- a/config.w32 +++ b/config.w32 @@ -8,18 +8,17 @@ function check_for_main_ext(ext, header) if (!header) { header = "php_"+ ext +".h"; } - - var r = new RegExp(PHP_VERSION +"."+ PHP_MINOR_VERSION); - var g = glob(configure_module_dirname +"\\..\\..\\*\\ext\\"+ ext +"\\"+ header); + + /* When in configure, we're always in the root of PHP source */ + var ext_path = "ext\\" + ext; STDOUT.Write("Checking for ext/"+ ext +" ... "); - for (i = 0; i < g.length; i++) { - if (g[i].match(r)) { - var f = g[i].substr(0, g[i].length - header.length - 1); - STDOUT.WriteLine(f); - return f; - } + + if (FSO.FileExists(ext_path + "\\" + header)) { + STDOUT.WriteLine(ext_path); + return ext_path; } + STDOUT.WriteLine(""); return false; } @@ -56,11 +55,17 @@ if (PHP_HTTP != "no") { "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_cookie_api.c http_querystring_api.c", + "http_cookie_api.c http_querystring_api.c http_request_datashare_api.c "+ + "http_requestdatashare_object.c http_request_info.c http_persistent_handle_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"); @@ -73,12 +78,11 @@ if (PHP_HTTP != "no") { WARNING("zlib encoding functions not enabled; libraries and headers not found"); } - if (PHP_HASH != "no") { + if (typeof(PHP_HASH) != "undefined" && PHP_HASH != "no") { var f; 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, ""); + ADD_FLAG("CFLAGS_HTTP", '/I "' + f + '" /DHTTP_HAVE_PHP_HASH_H=1'); ADD_EXTENSION_DEP("http", "hash", true); } } @@ -102,19 +106,24 @@ if (PHP_HTTP != "no") { AC_DEFINE("HTTP_HAVE_CURL", 1, "Have CURL library"); AC_DEFINE("HTTP_HAVE_SSL", 1, "Have SSL"); AC_DEFINE("HAVE_CURL_MULTI_STRERROR", 1, ""); + AC_DEFINE("HAVE_CURL_SHARE_STRERROR", 1, ""); AC_DEFINE("HAVE_CURL_EASY_STRERROR", 1, ""); AC_DEFINE("HAVE_CURL_EASY_RESET", 1, ""); AC_DEFINE("HAVE_CURL_GETFORMDATA", 1, ""); + AC_DEFINE("HAVE_CURL_FORMGET", 1, ""); + AC_DEFINE("HAVE_CURL_MULTI_SETOPT", 1, ""); + AC_DEFINE("HAVE_CURL_MULTI_TIMEOUT", 1, ""); } else { WARNING("curl convenience functions not enabled; libraries and headers not found"); } - - MAGIC_LIB = PHP_DEBUG != "no" ? "libmagic-staticd.lib":"libmagic-static.lib"; - if (CHECK_HEADER_ADD_INCLUDE("magic.h", "CFLAGS_HTTP") && - CHECK_LIB(MAGIC_LIB, "http", PHP_HTTP)) { - AC_DEFINE("HTTP_HAVE_MAGIC", 1, "Have magic library"); - AC_DEFINE("USE_MAGIC_STATIC", "", ""); - } else { - WARNING("content type guessing not enabled; libraries and headers not found"); - } +/* +// MAGIC_LIB = PHP_DEBUG != "no" ? "libmagic-staticd.lib":"libmagic-static.lib"; +// if (CHECK_HEADER_ADD_INCLUDE("magic.h", "CFLAGS_HTTP") && +// CHECK_LIB(MAGIC_LIB, "http", PHP_HTTP)) { +// AC_DEFINE("HTTP_HAVE_MAGIC", 1, "Have magic library"); +// AC_DEFINE("USE_MAGIC_STATIC", "", ""); +// } else { +// WARNING("content type guessing not enabled; libraries and headers not found"); +// } +*/ }