From: Rasmus Lerdorf Date: Fri, 15 Jan 2010 18:26:53 +0000 (+0000) Subject: Fix gcc version check - bug #50771 X-Git-Tag: php-5.2.13RC1~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73b13d76d044f4ca3211bb728b6b1f5368d03966;p=php Fix gcc version check - bug #50771 --- diff --git a/Zend/zend.h b/Zend/zend.h index dbc842a80a..b60e23504f 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -178,7 +178,7 @@ char *alloca (); #endif -#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3400 +#if defined(__GNUC__) && ZEND_GCC_VERSION >= 3004 #else # define __restrict__ #endif