X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=config.w32;h=68006dfcf4f25428de2d4a7f4baa7643d132f826;hp=2847a2c810a4098a515edf90f48fdaf7047cfcc8;hb=refs%2Fheads%2Fmaster;hpb=16dba799dae126258bbb09e2f699d5d7954fac17 diff --git a/config.w32 b/config.w32 index 2847a2c..3cc4069 100644 --- a/config.w32 +++ b/config.w32 @@ -2,25 +2,23 @@ // $Id$ ARG_ENABLE("http", "whether to enable extended HTTP support", "no"); -ARG_ENABLE("http-stream-wrapper", "whether to enable experimental stream wrapper", "no", "no"); 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; } @@ -30,10 +28,10 @@ function check_for_pecl_ext(ext, header) if (!header) { header = "php_"+ ext +".h"; } - + var g; var s = ext +"\\"+ header; - + STDOUT.Write("Checking for pecl/"+ ext +" ... "); if ( (g = glob(configure_module_dirname +"\\..\\"+ s)) || (g = glob(configure_module_dirname +"\\..\\..\\..\\pecl\\"+ s))) { @@ -47,68 +45,117 @@ function check_for_pecl_ext(ext, header) if (PHP_HTTP != "no") { - EXTENSION("http", - "missing.c http.c http_functions.c http_exception_object.c "+ - "http_util_object.c http_message_object.c http_requestpool_object.c "+ - "http_request_object.c http_response_object.c "+ - "http_api.c http_cache_api.c http_request_pool_api.c "+ - "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_request_body_api.c http_wrapper_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"); - - if (PHP_HTTP_STREAM_WRAPPER == "yes") { - AC_DEFINE("HTTP_HAVE_WRAPPER", 1, "Have experimental HTTP stream wrapper"); + var PHP_HTTP_SRC_ARRAY = glob(configure_module_dirname + "/src/*.c"); + var PHP_HTTP_SOURCES=""; + for (var i=0; i