From: Andi Gutmans Date: Sun, 4 Jun 2000 04:14:17 +0000 (+0000) Subject: - Only compile if building a thread safe version X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=09d281ff62e35ac927b20aef0e15ca12ea990224;p=php - Only compile if building a thread safe version --- diff --git a/TSRM/TSRM.c b/TSRM/TSRM.c index 1f7da18d88..76c005a72c 100644 --- a/TSRM/TSRM.c +++ b/TSRM/TSRM.c @@ -13,6 +13,7 @@ +----------------------------------------------------------------------+ */ +#ifdef ZTS #include "TSRM.h" #include @@ -454,3 +455,5 @@ void tsrm_debug_set(int status) { tsrm_debug_status = status; } + +#endif /* TSRM */