]> granicus.if.org Git - php/commitdiff
- Don't use alloca on HP-UX (Moriyoshi Koizumi <moriyoshi@at.wakwak.com>)
authorAndi Gutmans <andi@php.net>
Sat, 19 Jul 2003 07:19:21 +0000 (07:19 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 19 Jul 2003 07:19:21 +0000 (07:19 +0000)
Zend/zend.h

index 3e28b4221f1b2c5fccdb1212f1f5ac1cda6d9a1d..d5dd21f53d4937889e6225849a507111d68285e3 100644 (file)
@@ -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