From 99d0a5c86e95c034833ef07c71b899adb2d5ab7b Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Sat, 19 Jul 2003 07:19:21 +0000 Subject: [PATCH] - Don't use alloca on HP-UX (Moriyoshi Koizumi ) --- Zend/zend.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend.h b/Zend/zend.h index 3e28b4221f..d5dd21f53d 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)) +#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(ZEND_WIN32)) && !(defined(ZTS) && defined(NETWARE)) && !defined(HPUX) # define do_alloca(p) alloca(p) # define free_alloca(p) #else -- 2.50.1