From aad797691b22e2dd3cdef177a8eade8f5f5ce23c Mon Sep 17 00:00:00 2001 From: foobar Date: Sat, 19 Jul 2003 13:10:24 +0000 Subject: [PATCH] Fix the HPUX alloca fix as suggested by Sascha --- Zend/zend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1