summaryrefslogtreecommitdiff
path: root/www/php4/patches
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2004-07-06 19:52:01 +0000
committerjdolecek <jdolecek@pkgsrc.org>2004-07-06 19:52:01 +0000
commite20e6ce14eb134546b60a72850388b3811e00e36 (patch)
treec1896824918706a279e15f92abae9a9f38fb2a58 /www/php4/patches
parent2a06407d524c8e38efa2c2ca192b006d3ad0ab93 (diff)
downloadpkgsrc-e20e6ce14eb134546b60a72850388b3811e00e36.tar.gz
Update php4 package to 4.3.7.
Change list from release notes: * Synchronized bundled GD library with GD 2.0.23. * Fixed a bug that prevented compilation of GD extensions against FreeType 2.1.0-2.1.2. * Fixed thread safety issue with informix connection id. * Fixed incorrect resolving of relative paths by glob() in windows. * Fixed mapping of Greek letters to html entities. * Fixed a bug that caused an on shutdown crash when using PHP with Apache 2.0.49. * Fixed a number of crashes inside pgsql, cpdf and gd extensions. All in all this release fixes over 30 bugs that have been discovered and resolved since the 4.3.6 release.
Diffstat (limited to 'www/php4/patches')
-rw-r--r--www/php4/patches/patch-ac46
1 files changed, 0 insertions, 46 deletions
diff --git a/www/php4/patches/patch-ac b/www/php4/patches/patch-ac
deleted file mode 100644
index 74609b916de..00000000000
--- a/www/php4/patches/patch-ac
+++ /dev/null
@@ -1,46 +0,0 @@
-$NetBSD: patch-ac,v 1.8 2004/05/18 18:30:39 cjones Exp $
-
---- ext/pcre/php_pcre.c.orig Fri Apr 16 09:21:14 2004
-+++ ext/pcre/php_pcre.c Fri Apr 16 09:23:36 2004
-@@ -106,15 +106,6 @@
- REGISTER_LONG_CONSTANT("PREG_SPLIT_DELIM_CAPTURE", PREG_SPLIT_DELIM_CAPTURE, CONST_CS | CONST_PERSISTENT);
- REGISTER_LONG_CONSTANT("PREG_SPLIT_OFFSET_CAPTURE", PREG_SPLIT_OFFSET_CAPTURE, CONST_CS | CONST_PERSISTENT);
- REGISTER_LONG_CONSTANT("PREG_GREP_INVERT", PREG_GREP_INVERT, CONST_CS | CONST_PERSISTENT);
--
-- pcre_malloc = php_pcre_malloc;
-- pcre_free = php_pcre_free;
--
--#ifdef NO_RECURSE
-- pcre_stack_malloc = php_pcre_malloc;
-- pcre_stack_free = php_pcre_free;
--#endif
--
- return SUCCESS;
- }
- /* }}} */
-@@ -130,6 +121,16 @@
- }
- /* }}} */
-
-+/* {{{ PHP_RINIT_FUNCTION(pcre) */
-+static PHP_RINIT_FUNCTION(pcre)
-+{
-+ pcre_malloc = php_pcre_malloc;
-+ pcre_free = php_pcre_free;
-+
-+ return SUCCESS;
-+}
-+/* }}} */
-+
- /* {{{ pcre_get_compiled_regex
- */
- PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int *preg_options) {
-@@ -1527,7 +1528,7 @@
- pcre_functions,
- PHP_MINIT(pcre),
- PHP_MSHUTDOWN(pcre),
-- NULL,
-+ PHP_RINIT(pcre),
- NULL,
- PHP_MINFO(pcre),
- NO_VERSION_YET,