From: foobar Date: Sat, 19 Jul 2003 13:10:24 +0000 (+0000) Subject: Fix the HPUX alloca fix as suggested by Sascha X-Git-Tag: BEFORE_ARG_INFO~194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aad797691b22e2dd3cdef177a8eade8f5f5ce23c;p=php Fix the HPUX alloca fix as suggested by Sascha --- diff --git a/Zend/zend.h b/Zend/zend.h index d5dd21f53d..c5f896ffa5 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -146,7 +146,7 @@ char *alloca (); # endif #endif -#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(ZEND_WIN32)) && !(defined(ZTS) && defined(NETWARE)) && !defined(HPUX) +#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(ZEND_WIN32)) && !(defined(ZTS) && defined(NETWARE)) && !(defined(ZTS) && defined(HPUX)) # define do_alloca(p) alloca(p) # define free_alloca(p) #else