mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
aa4d81d3be
- Fix crash with threaded apache2 [2] - Fix build when SSL is in not in base system [3] [4] PR: ports/75737 [1], ports/74780 [2], ports/73896 [3], ports/74886 [4] Submitted by: Toni Viemero <toni.viemero@iki.fi> [1], Peter Jeffery <peterj@qubesoft.com> [2], oliver [3], William Fletcher <ultraviolet@omina.co.za> [4] Patch by: Simon Barner <barner@gmx.de> [4]
13 lines
677 B
C
13 lines
677 B
C
--- Zend/zend.h.orig Mon Dec 6 15:42:56 2004
|
|
+++ Zend/zend.h Mon Dec 6 15:46:40 2004
|
|
@@ -176,7 +176,7 @@
|
|
#endif
|
|
|
|
|
|
-#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(ZEND_WIN32)) && !(defined(ZTS) && defined(NETWARE)) && !(defined(ZTS) && defined(HPUX)) && !defined(__darwin__) && !defined(__APPLE__)
|
|
+#if (HAVE_ALLOCA || (defined (__GNUC__) && __GNUC__ >= 2)) && !(defined(ZTS) && defined(ZEND_WIN32)) && !(defined(ZTS) && defined(NETWARE)) && !(defined(ZTS) && defined(HPUX)) && !defined(__darwin__) && !defined(__APPLE__) && !(defined(ZTS) && defined(__FreeBSD__))
|
|
# define do_alloca(p) alloca(p)
|
|
# define free_alloca(p)
|
|
#else
|
|
|