X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_std_defs.h;h=b4218bd556c1d87eea2861ec7ab50b487214b5f5;hp=9f22bcf5c26f0d44cc65ae8155a2470bf6ee8c91;hb=dbc4ec02cd319000b5c8589910047cfe6d5738be;hpb=f149245b8dde0419dc6b49ec81d303af6264c1a1 diff --git a/php_http_std_defs.h b/php_http_std_defs.h index 9f22bcf..b4218bd 100644 --- a/php_http_std_defs.h +++ b/php_http_std_defs.h @@ -96,12 +96,6 @@ typedef int STATUS; zend_error(E_NOTICE, "Wrong parameter count for %s()", get_active_function_name(TSRMLS_C)); \ } -/* check if return value is used */ -#define IF_RETVAL_USED \ - if (!return_value_used) { \ - return; \ - } else - /* CR LF */ #define HTTP_CRLF "\r\n" @@ -306,6 +300,12 @@ typedef int STATUS; # define end_error_handling() #endif +#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 2) || PHP_MAJOR_VERSION > 5 +# define ZEND_EXCEPTION_GET_DEFAULT() zend_exception_get_default(TSRMLS_C) +#else +# define ZEND_EXCEPTION_GET_DEFAULT() zend_exception_get_default() +#endif + #ifndef E_THROW # define E_THROW 0 #endif