summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorjdolecek <jdolecek@pkgsrc.org>2003-08-31 19:55:21 +0000
committerjdolecek <jdolecek@pkgsrc.org>2003-08-31 19:55:21 +0000
commit90c1c1709f137ef730166f682c109e69f84211d9 (patch)
tree33c9301fff79082d1d83e91e87ace097146292cf /misc
parent5fe36a85b0cab2671cffc7b1c348535a43ce38f7 (diff)
downloadpkgsrc-90c1c1709f137ef730166f682c109e69f84211d9.tar.gz
Update PHP to final 4.3.3
Some highlights of changes since 4.2.3: * PCRE updated to 4.3, GD to 2.0.15 * improved Apache2 support * much improved stream & URL wrapper support, output compression support * added CLI (Command Line Interface) SAPI * debug_backtrace() backported from ZendEngine2 * faster build system * huge number of other bug fixes and improvements Packaging changes: * 'pcre', 'xml', and 'session' modules folded back into main package - 'pcre' and 'xml' is required by PEAR, and 'session' is just too essential to be separate * 'gd' module now uses bundled PHP GD library, which is better integrated * PHP modules use shared distinfo when possible to ease future PHP updates * ${PREFIX}/bin/php is now CLI version, ${PREFIX}/libexec/cgi-big/php remains CGI version
Diffstat (limited to 'misc')
-rw-r--r--misc/php4-calendar/distinfo4
-rw-r--r--misc/php4-mbstring/Makefile4
-rw-r--r--misc/php4-mbstring/patches/patch-aa36
3 files changed, 2 insertions, 42 deletions
diff --git a/misc/php4-calendar/distinfo b/misc/php4-calendar/distinfo
deleted file mode 100644
index 769d7150f50..00000000000
--- a/misc/php4-calendar/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-$NetBSD: distinfo,v 1.5 2002/10/14 06:21:13 martti Exp $
-
-SHA1 (php-4.2.3.tar.gz) = 3e57e8c056bd2f173bba8705293cdfa15aeb93bc
-Size (php-4.2.3.tar.gz) = 3413829 bytes
diff --git a/misc/php4-mbstring/Makefile b/misc/php4-mbstring/Makefile
index e82d12b89a2..ec3eeceac72 100644
--- a/misc/php4-mbstring/Makefile
+++ b/misc/php4-mbstring/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.5 2002/11/30 15:13:24 taca Exp $
+# $NetBSD: Makefile,v 1.6 2003/08/31 19:55:51 jdolecek Exp $
MODNAME= mbstring
CATEGORIES+= misc
-PKGREVISION= 1
+PKGREVISION= # empty
COMMENT= PHP4 extension for multibyte characters support (currently, Japanese only)
USE_BUILDLINK2= YES
diff --git a/misc/php4-mbstring/patches/patch-aa b/misc/php4-mbstring/patches/patch-aa
deleted file mode 100644
index 7bc59ff4ba4..00000000000
--- a/misc/php4-mbstring/patches/patch-aa
+++ /dev/null
@@ -1,36 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2002/11/30 15:13:26 taca Exp $
-
---- mbstring.c.orig Thu Aug 1 14:47:56 2002
-+++ mbstring.c
-@@ -1031,14 +1031,19 @@ php_mbstr_encoding_handler(zval *arg, ch
- var = php_strtok_r(res, separator, &strtok_buf);
- while (var) {
- val = strchr(var, '=');
-- val_list[n] = var;
-- len_list[n] = php_url_decode(var, strlen(var));
-- n++;
- if (val) { /* have a value */
-+ len_list[n] = php_url_decode(var, val-var);
-+ val_list[n] = var;
-+ n++;
-+
- *val++ = '\0';
- val_list[n] = val;
- len_list[n] = php_url_decode(val, strlen(val));
- } else {
-+ len_list[n] = php_url_decode(var, strlen(var));
-+ val_list[n] = var;
-+ n++;
-+
- val_list[n] = "";
- len_list[n] = 0;
- }
-@@ -1375,7 +1380,7 @@ PHP_FUNCTION(mb_parse_str)
- str_list[n] = var;
- len_list[n] = php_url_decode(var, strlen(var));
- n++;
-- str_list[n] = NULL;
-+ str_list[n] = "";
- len_list[n] = 0;
- }
- n++;