X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=config.w32;h=c5240375df1dd4f1dccc92be7099d812057e7102;hp=35a0dcbea280ffd6f69170d55817fa527ec91e98;hb=5b440d6af3dd3052dde7b137f975692f0aa84603;hpb=abfef9f65ca91a1d682d85c4f7f3a9fca7a9eee6 diff --git a/config.w32 b/config.w32 index 35a0dcb..c524037 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,7 +55,8 @@ 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", null, "/I\"" + configure_module_dirname + "/phpstr\""); ADD_SOURCES(configure_module_dirname + "/phpstr", "phpstr.c", "http"); @@ -82,8 +82,7 @@ if (PHP_HTTP != "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_PHP_HASH_H", 1, ""); + ADD_FLAG("CFLAGS_HTTP", '/I "' + f + '" /DHTTP_HAVE_PHP_HASH_H=1'); ADD_EXTENSION_DEP("http", "hash", true); } }