From: Michael Wallner Date: Tue, 24 Apr 2007 11:31:44 +0000 (+0000) Subject: - fix non-ZTS build, thanks Hannes X-Git-Tag: RELEASE_1_5_3~5 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=2dc2f1f7e1142bc51fa5ac9e1004c56f9f82e47c;ds=sidebyside - fix non-ZTS build, thanks Hannes --- diff --git a/http.c b/http.c index 0299d2f..b4ed0df 100644 --- a/http.c +++ b/http.c @@ -201,13 +201,15 @@ static inline void _http_globals_free(zend_http_globals *G TSRMLS_DC) } } -#if PHP_DEBUG +#if defined(ZTS) && defined(PHP_DEBUG) +#if ZTS && PHP_DEBUG zend_http_globals *http_globals(void) { TSRMLS_FETCH(); return HTTP_G; } #endif +#endif /* }}} */ /* {{{ static inline void http_check_allowed_methods(char *) */