diff options
author | Sascha Schumann <sas@php.net> | 2003-08-28 17:04:16 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2003-08-28 17:04:16 +0000 |
commit | 83bd1f4398fe6779b1b9b013394d66c37b48eab8 (patch) | |
tree | 6da8e37a8c57df9de5b25ff0d93badfdd6e137e9 | |
parent | 436a07176cd99736fb907f7ed94213a8fc0fa5bb (diff) | |
download | php-git-83bd1f4398fe6779b1b9b013394d66c37b48eab8.tar.gz |
ZEND_GCC_VERSION should always be defined to a number so we can use
simple comparisons all the time.
-rw-r--r-- | Zend/zend.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |