Browse Source

- Don't use alloca on HP-UX (Moriyoshi Koizumi <moriyoshi@at.wakwak.com>)

PEAR_1_4DEV
Andi Gutmans 23 years ago
parent
commit
99d0a5c86e
  1. 2
      Zend/zend.h

2
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

Loading…
Cancel
Save