From 83bd1f4398fe6779b1b9b013394d66c37b48eab8 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Thu, 28 Aug 2003 17:04:16 +0000 Subject: [PATCH] ZEND_GCC_VERSION should always be defined to a number so we can use simple comparisons all the time. --- Zend/zend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend.h b/Zend/zend.h index 5b0ae62947..8d70b21f44 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -149,7 +149,7 @@ char *alloca (); #ifdef __GNUC__ # define ZEND_GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__) #else -# define ZEND_GCC_VERSION +# define ZEND_GCC_VERSION 0 #endif #if ZEND_GCC_VERSION >= 2096 -- 2.40.0