X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http.h;h=431e7fb033847f5ca007e49a4b61280e0b793f27;hb=fd988ae5f0d8a32ceacd9a3b67be5f67a0c3f37d;hp=08b2a4db4009ae7b908fa5bf4552c48e13ee8420;hpb=46fc12676a53668d55fe6d02d44210e2eaf4b6b5;p=m6w6%2Fext-http diff --git a/php_http.h b/php_http.h index 08b2a4d..431e7fb 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_EXT_HTTP_VERSION "1.0.0-dev" +#define PHP_EXT_HTTP_VERSION "1.0.1dev" #ifdef HAVE_CONFIG_H # include "config.h" @@ -144,7 +144,21 @@ ZEND_EXTERN_MODULE_GLOBALS(http); # define HTTP_G (&http_globals) #endif -#define HTTP_HAVE_EXT(EXT) ((defined(HAVE_##EXT) || defined(HAVE_PHP_##EXT)) && (HTTP_SHARED_DEPS || !defined(COMPILE_DL_##EXT))) +#if defined(HAVE_ICONV) && (HTTP_SHARED_DEPS || !defined(COMPILE_DL_ICONV)) +# define HTTP_HAVE_ICONV +#endif + +#if defined(HAVE_PHP_SESSION) && (HTTP_SHARED_DEPS || !defined(COMPILE_DL_SESSION)) +# define HTTP_HAVE_SESSION +#endif + +#if defined(HAVE_HASH_EXT) && (HTTP_SHARED_DEPS || !defined(COMPILE_DL_HASH) && defined(HTTP_HAVE_PHP_HASH_H)) +# define HTTP_HAVE_HASH +#endif + +#if defined(HAVE_SPL) +# define HTTP_HAVE_SPL +#endif PHP_FUNCTION(http_test); PHP_FUNCTION(http_date);