aboutsummaryrefslogtreecommitdiffstats
path: root/lang/php53/files
diff options
context:
space:
mode:
authorale <ale@FreeBSD.org>2005-01-11 01:00:34 +0800
committerale <ale@FreeBSD.org>2005-01-11 01:00:34 +0800
commit0c8861b65f6e76212df2cf2e415b6c7427bc5bc1 (patch)
tree537d01bff83ba02865621fd9abf68c892f1e4841 /lang/php53/files
parent1e6246ba6e20505d3a258d008490906b1e74f069 (diff)
downloadfreebsd-ports-gnome-0c8861b65f6e76212df2cf2e415b6c7427bc5bc1.tar.gz
freebsd-ports-gnome-0c8861b65f6e76212df2cf2e415b6c7427bc5bc1.tar.zst
freebsd-ports-gnome-0c8861b65f6e76212df2cf2e415b6c7427bc5bc1.zip
- Fix overloading objects [1] (bump php4 PORTREVISION)
- 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]
Diffstat (limited to 'lang/php53/files')
-rw-r--r--lang/php53/files/patch-Zend::zend.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/lang/php53/files/patch-Zend::zend.h b/lang/php53/files/patch-Zend::zend.h
new file mode 100644
index 000000000000..50625c403417
--- /dev/null
+++ b/lang/php53/files/patch-Zend::zend.h
@@ -0,0 +1,12 @@
+--- 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
+