X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http.c;h=bc9166aa9596f7fbe4176a7bf9af4b520de01692;hp=4130bce904c027369227bc119d7189ef59423da1;hb=8158548a80733b3af9539356b47527d960a13287;hpb=2e92ec70991d53cb3d6d710ae7a6b3a6b31ec978 diff --git a/src/php_http.c b/src/php_http.c index 4130bce..bc9166a 100644 --- a/src/php_http.c +++ b/src/php_http.c @@ -31,16 +31,19 @@ #if PHP_HTTP_HAVE_LIBICU # include #endif +#if PHP_HTTP_HAVE_LIBIDN +# include +#endif #if PHP_HTTP_HAVE_LIBIDN2 # include #endif -#if PHP_HTTP_HAVE_LIBIDN -# include +#if PHP_HTTP_HAVE_LIBIDNKIT2 || PHP_HTTP_HAVE_LIBIDNKIT +#include "idn/version.h" #endif ZEND_DECLARE_MODULE_GLOBALS(php_http); -#ifdef COMPILE_DL_HTTP +#if COMPILE_DL_HTTP ZEND_GET_MODULE(http) #endif @@ -57,10 +60,10 @@ static zend_module_dep http_module_deps[] = { ZEND_MOD_REQUIRED("raphf") ZEND_MOD_REQUIRED("propro") ZEND_MOD_REQUIRED("spl") -#ifdef PHP_HTTP_HAVE_HASH +#if PHP_HTTP_HAVE_HASH ZEND_MOD_REQUIRED("hash") #endif -#ifdef PHP_HTTP_HAVE_ICONV +#if PHP_HTTP_HAVE_ICONV ZEND_MOD_REQUIRED("iconv") #endif {NULL, NULL, NULL, 0} @@ -257,7 +260,16 @@ PHP_MINFO_FUNCTION(http) #else php_info_print_table_row(3, "libidn (IDNA2003)", "disabled", "disabled"); #endif - +#if PHP_HTTP_HAVE_LIBIDNKIT2 + php_info_print_table_row(3, "libidnkit2 (IDNA2008)", IDNKIT_VERSION_LIBIDN, idn_version_libidn()); +#else + php_info_print_table_row(3, "libidnkit2 (IDNA2008)", "disabled", "disabled"); +#endif +#if PHP_HTTP_HAVE_LIBIDNKIT + php_info_print_table_row(3, "libidnkit (IDNA2003)", IDNKIT_VERSION, idn_version_getstring()); +#else + php_info_print_table_row(3, "libidnkit (IDNA2003)", "disabled", "disabled"); +#endif php_info_print_table_end(); DISPLAY_INI_ENTRIES();