ZEND_GCC_VERSION should always be defined to a number so we can use

simple comparisons all the time.
This commit is contained in:
Sascha Schumann 2003-08-28 17:04:16 +00:00
parent 436a07176c
commit 83bd1f4398

View File

@ -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