]> granicus.if.org Git - php/commitdiff
ZEND_GCC_VERSION should always be defined to a number so we can use
authorSascha Schumann <sas@php.net>
Thu, 28 Aug 2003 17:04:16 +0000 (17:04 +0000)
committerSascha Schumann <sas@php.net>
Thu, 28 Aug 2003 17:04:16 +0000 (17:04 +0000)
simple comparisons all the time.

Zend/zend.h

index 5b0ae62947f03c1fbcda017a3c166c3cfaaf8f48..8d70b21f44d47e3788cc7fd5a56749721126f9aa 100644 (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