diff options
author | dirk <dirk@FreeBSD.org> | 2002-05-17 06:07:01 +0000 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2002-05-17 06:07:01 +0000 |
commit | bfd6b9f3e606a247b70655a58ee3d43f6d40f961 (patch) | |
tree | b65626261546dc96d41a0bbe5af3c0c554f075e6 /www | |
parent | ee9c295d73efaa30ebd58d84f86c7e843995e507 (diff) | |
download | FreeBSD-ports-bfd6b9f3e606a247b70655a58ee3d43f6d40f961.zip FreeBSD-ports-bfd6b9f3e606a247b70655a58ee3d43f6d40f961.tar.gz |
Upgrade to 4.2.1.
Diffstat (limited to 'www')
-rw-r--r-- | www/mod_php4/Makefile | 4 | ||||
-rw-r--r-- | www/mod_php4/distinfo | 2 | ||||
-rw-r--r-- | www/mod_php4/files/patch-ext_standard_file.c | 20 | ||||
-rw-r--r-- | www/mod_php4/pkg-plist | 5 | ||||
-rw-r--r-- | www/mod_php5/Makefile | 4 | ||||
-rw-r--r-- | www/mod_php5/distinfo | 2 | ||||
-rw-r--r-- | www/mod_php5/files/patch-ext_standard_file.c | 20 | ||||
-rw-r--r-- | www/mod_php5/pkg-plist | 5 |
8 files changed, 12 insertions, 50 deletions
diff --git a/www/mod_php4/Makefile b/www/mod_php4/Makefile index e9fb1e6..929d687 100644 --- a/www/mod_php4/Makefile +++ b/www/mod_php4/Makefile @@ -6,8 +6,8 @@ # PORTNAME?= mod_php4 -PORTVERSION= 4.2.0 -PORTREVISION?= 1 +PORTVERSION= 4.2.1 +PORTREVISION?= 0 CATEGORIES?= www MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \ http://php.he.net/${PHP_DISTDIR}/ \ diff --git a/www/mod_php4/distinfo b/www/mod_php4/distinfo index 8fd3488..5081112 100644 --- a/www/mod_php4/distinfo +++ b/www/mod_php4/distinfo @@ -1 +1 @@ -MD5 (php-4.2.0.tar.bz2) = a0831e98eb28efb7dabaf7edf686b8b7 +MD5 (php-4.2.1.tar.bz2) = 7435d86b9267fe5f048046caf1a6158b diff --git a/www/mod_php4/files/patch-ext_standard_file.c b/www/mod_php4/files/patch-ext_standard_file.c deleted file mode 100644 index 7077adc..0000000 --- a/www/mod_php4/files/patch-ext_standard_file.c +++ /dev/null @@ -1,20 +0,0 @@ ---- ext/standard/file.c.orig Thu Feb 28 09:26:44 2002 -+++ ext/standard/file.c Tue May 7 13:57:19 2002 -@@ -1453,7 +1453,7 @@ - PHP_FUNCTION(mkdir) - { - int dir_len, ret; -- mode_t mode = 0777; -+ long mode = 0777; - char *dir; - - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &dir, &dir_len, &mode) == FAILURE) { -@@ -1468,7 +1468,7 @@ - RETURN_FALSE; - } - -- ret = VCWD_MKDIR(dir, mode); -+ ret = VCWD_MKDIR(dir, (mode_t)mode); - if (ret < 0) { - php_error(E_WARNING, "mkdir() failed (%s)", strerror(errno)); - RETURN_FALSE; diff --git a/www/mod_php4/pkg-plist b/www/mod_php4/pkg-plist index c86cc45..f4cb18a 100644 --- a/www/mod_php4/pkg-plist +++ b/www/mod_php4/pkg-plist @@ -270,7 +270,8 @@ lib/php/build/shtool @dirrm lib/php/Schedule @dirrm lib/php/XML @dirrm lib/php/build -@dirrm lib/php/extensions/no-debug-%%NON%%zts-20010901 +@dirrm lib/php/extensions/no-debug-%%NON%%zts-20020429 @dirrm lib/php/extensions @dirrm lib/php -@exec mkdir -p %D/lib/php/extensions/no-debug-%%NON%%zts-20010901 +@exec mkdir -p %D/lib/php/extensions/no-debug-%%NON%%zts-20020429 +@exec mkdir -p %D/lib/php/Image diff --git a/www/mod_php5/Makefile b/www/mod_php5/Makefile index e9fb1e6..929d687 100644 --- a/www/mod_php5/Makefile +++ b/www/mod_php5/Makefile @@ -6,8 +6,8 @@ # PORTNAME?= mod_php4 -PORTVERSION= 4.2.0 -PORTREVISION?= 1 +PORTVERSION= 4.2.1 +PORTREVISION?= 0 CATEGORIES?= www MASTER_SITES= http://us.php.net/${PHP_DISTDIR}/ \ http://php.he.net/${PHP_DISTDIR}/ \ diff --git a/www/mod_php5/distinfo b/www/mod_php5/distinfo index 8fd3488..5081112 100644 --- a/www/mod_php5/distinfo +++ b/www/mod_php5/distinfo @@ -1 +1 @@ -MD5 (php-4.2.0.tar.bz2) = a0831e98eb28efb7dabaf7edf686b8b7 +MD5 (php-4.2.1.tar.bz2) = 7435d86b9267fe5f048046caf1a6158b diff --git a/www/mod_php5/files/patch-ext_standard_file.c b/www/mod_php5/files/patch-ext_standard_file.c deleted file mode 100644 index 7077adc..0000000 --- a/www/mod_php5/files/patch-ext_standard_file.c +++ /dev/null @@ -1,20 +0,0 @@ ---- ext/standard/file.c.orig Thu Feb 28 09:26:44 2002 -+++ ext/standard/file.c Tue May 7 13:57:19 2002 -@@ -1453,7 +1453,7 @@ - PHP_FUNCTION(mkdir) - { - int dir_len, ret; -- mode_t mode = 0777; -+ long mode = 0777; - char *dir; - - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &dir, &dir_len, &mode) == FAILURE) { -@@ -1468,7 +1468,7 @@ - RETURN_FALSE; - } - -- ret = VCWD_MKDIR(dir, mode); -+ ret = VCWD_MKDIR(dir, (mode_t)mode); - if (ret < 0) { - php_error(E_WARNING, "mkdir() failed (%s)", strerror(errno)); - RETURN_FALSE; diff --git a/www/mod_php5/pkg-plist b/www/mod_php5/pkg-plist index c86cc45..f4cb18a 100644 --- a/www/mod_php5/pkg-plist +++ b/www/mod_php5/pkg-plist @@ -270,7 +270,8 @@ lib/php/build/shtool @dirrm lib/php/Schedule @dirrm lib/php/XML @dirrm lib/php/build -@dirrm lib/php/extensions/no-debug-%%NON%%zts-20010901 +@dirrm lib/php/extensions/no-debug-%%NON%%zts-20020429 @dirrm lib/php/extensions @dirrm lib/php -@exec mkdir -p %D/lib/php/extensions/no-debug-%%NON%%zts-20010901 +@exec mkdir -p %D/lib/php/extensions/no-debug-%%NON%%zts-20020429 +@exec mkdir -p %D/lib/php/Image |