From: Andi Gutmans Date: Sat, 19 Jul 2003 07:19:21 +0000 (+0000) Subject: - Don't use alloca on HP-UX (Moriyoshi Koizumi ) X-Git-Tag: BEFORE_ARG_INFO~200 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=99d0a5c86e95c034833ef07c71b899adb2d5ab7b;p=php - Don't use alloca on HP-UX (Moriyoshi Koizumi ) --- 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