diff options
author | Alex Dupre <ale@FreeBSD.org> | 2011-08-24 06:48:07 +0000 |
---|---|---|
committer | Alex Dupre <ale@FreeBSD.org> | 2011-08-24 06:48:07 +0000 |
commit | 695204e38334d9ae4f8eaba39eca72aef8dadf1e (patch) | |
tree | 9272354bba8e9ba143c4ef2538425b2ee8b893cb /lang/php53 | |
parent | 360733a17d50a8f5e378873a49cb786dd8764beb (diff) | |
download | ports-695204e38334d9ae4f8eaba39eca72aef8dadf1e.tar.gz ports-695204e38334d9ae4f8eaba39eca72aef8dadf1e.zip |
Notes
Diffstat (limited to 'lang/php53')
-rw-r--r-- | lang/php53/Makefile | 6 | ||||
-rw-r--r-- | lang/php53/distinfo | 12 | ||||
-rw-r--r-- | lang/php53/files/patch-ext_standard_php_crypt_r.c | 11 |
3 files changed, 9 insertions, 20 deletions
diff --git a/lang/php53/Makefile b/lang/php53/Makefile index 1cfdc7a0f069..3acb3e69f072 100644 --- a/lang/php53/Makefile +++ b/lang/php53/Makefile @@ -6,8 +6,8 @@ # PORTNAME= php5 -PORTVERSION= 5.3.7 -PORTREVISION?= 2 +PORTVERSION= 5.3.8 +PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= ${MASTER_SITE_PHP} MASTER_SITE_SUBDIR= distributions @@ -62,7 +62,7 @@ PATCH_SITES+= ${MASTER_SITE_LOCAL} PATCH_SITE_SUBDIR= ale .if !defined(WITHOUT_SUHOSIN) -PATCHFILES+= suhosin-patch-${PORTVERSION}-0.9.10.patch.gz:suhosin +PATCHFILES+= suhosin-patch-${PORTVERSION}-0.9.10.patch.gz PATCH_SITES+= http://download.suhosin.org/:suhosin PLIST_SUB+= SUHOSIN="" .else diff --git a/lang/php53/distinfo b/lang/php53/distinfo index 79e25c866b16..533e24cea8b9 100644 --- a/lang/php53/distinfo +++ b/lang/php53/distinfo @@ -1,6 +1,6 @@ -SHA256 (php-5.3.7.tar.bz2) = 58b490af6f919acfafb6e176957b88e3d814eabee68cc147b4d8d20697d88b96 -SIZE (php-5.3.7.tar.bz2) = 11144328 -SHA256 (suhosin-patch-5.3.7-0.9.10.patch.gz) = 0a0dac0e4343596f2bfcef27dcf7180524b78bb1d2d2ca878370a7d0f8313d26 -SIZE (suhosin-patch-5.3.7-0.9.10.patch.gz) = 41175 -SHA256 (php-5.3.7-mail-header.patch) = 5cd43388b33fe5703c2c7d1de04d9b7030ee0a65d110c3793dfccb096ed2cc09 -SIZE (php-5.3.7-mail-header.patch) = 3346 +SHA256 (php-5.3.8.tar.bz2) = a1dd06fd5593e97d9a5bd9818d6501d28d3ee8f09b83f0ec78f7cdfc060f3ea2 +SIZE (php-5.3.8.tar.bz2) = 11190060 +SHA256 (suhosin-patch-5.3.8-0.9.10.patch.gz) = 0a0dac0e4343596f2bfcef27dcf7180524b78bb1d2d2ca878370a7d0f8313d26 +SIZE (suhosin-patch-5.3.8-0.9.10.patch.gz) = 41175 +SHA256 (php-5.3.8-mail-header.patch) = 5cd43388b33fe5703c2c7d1de04d9b7030ee0a65d110c3793dfccb096ed2cc09 +SIZE (php-5.3.8-mail-header.patch) = 3346 diff --git a/lang/php53/files/patch-ext_standard_php_crypt_r.c b/lang/php53/files/patch-ext_standard_php_crypt_r.c deleted file mode 100644 index e2e5ed8e04ae..000000000000 --- a/lang/php53/files/patch-ext_standard_php_crypt_r.c +++ /dev/null @@ -1,11 +0,0 @@ ---- ext/standard/php_crypt_r.c.orig 2011-08-22 09:54:16.000000000 +0200 -+++ ext/standard/php_crypt_r.c 2011-08-22 09:54:49.000000000 +0200 -@@ -382,7 +382,7 @@ - /* Now make the output string */ - memcpy(passwd, MD5_MAGIC, MD5_MAGIC_LEN); - strlcpy(passwd + MD5_MAGIC_LEN, sp, sl + 1); -- strlcat(passwd, "$", 1); -+ strcat(passwd, "$"); - - PHP_MD5Final(final, &ctx); - |