- fix non-ZTS build, thanks Hannes
[m6w6/ext-http] / http.c
diff --git a/http.c b/http.c
index 0299d2f920d904d7422898353d219e32d59bacef..b4ed0dfbdcd06083c61ef621912b0900522ba7b6 100644 (file)
--- 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 *) */