diff options
author | taca <taca@pkgsrc.org> | 2014-02-07 15:35:05 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2014-02-07 15:35:05 +0000 |
commit | 4982968d6a8e07b3622afdb8bcca6034356234d1 (patch) | |
tree | 866f3dbf388f0ad131f01c7bbb6b307097580d12 /lang/php55 | |
parent | d8d8137dfebb75fe9237c66b3b04be6aed26dea8 (diff) | |
download | pkgsrc-4982968d6a8e07b3622afdb8bcca6034356234d1.tar.gz |
Update php55 to 5.5.9 (PHP 5.5.9).
06 Feb 2014, PHP 5.5.9
- Core:
. Fixed bug #66509 (copy() arginfo has changed starting from 5.4). (willfitch)
- GD:
. Fixed bug #66356 (Heap Overflow Vulnerability in imagecrop()).
(Laruence, Remi)
- OPCache:
. Fixed bug #66474 (Optimizer bug in constant string to boolean conversion).
(Dmitry)
. Fixed bug #66461 (PHP crashes if opcache.interned_strings_buffer=0).
(Dmitry)
. Fixed bug #66298 (ext/opcache/Optimizer/zend_optimizer.c has dos-style
^M as lineend). (Laruence)
- PDO_pgsql:
. Fixed bug #62479 (PDO-psql cannot connect if password contains
spaces) (willfitch, iliaa)
- Readline
. Fixed Bug #66412 (readline_clear_history() with libedit causes segfault after
#65714). (Remi)
- Session
. Fixed bug #66469 (Session module is sending multiple set-cookie headers when
session.use_strict_mode=1) (Yasuo)
. Fixed bug #66481 (Segfaults on session_name()).
(cmcdermottroe at engineyard dot com, Yasuo)
- Standard
. Fixed bug #66395 (basename function doesn't remove drive letter). (Anatol)
- Sockets:
. Fixed bug #66381 (__ss_family was changed on AIX 5.3). (Felipe)
- Zend Engine
. Fixed bug #66009 (Failed compilation of PHP extension with C++ std
library using VS 2012). (Anatol)
Diffstat (limited to 'lang/php55')
-rw-r--r-- | lang/php55/distinfo | 10 | ||||
-rw-r--r-- | lang/php55/patches/patch-makedist | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lang/php55/distinfo b/lang/php55/distinfo index 47f291568d8..972e5a1b1c3 100644 --- a/lang/php55/distinfo +++ b/lang/php55/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.13 2014/01/11 17:05:09 taca Exp $ +$NetBSD: distinfo,v 1.14 2014/02/07 15:35:05 taca Exp $ -SHA1 (php-5.5.8.tar.bz2) = 94800df241864a2c66fd01adca3d22247dc1a8d5 -RMD160 (php-5.5.8.tar.bz2) = 7779602dfa1683a7938ed41d1713916bcb7ce296 -Size (php-5.5.8.tar.bz2) = 13005675 bytes +SHA1 (php-5.5.9.tar.bz2) = d5dac90bc09f197b73b5bfcc3ca7dd6187f32e16 +RMD160 (php-5.5.9.tar.bz2) = 9290668f79070e7a578de55498a4a5144f2d14cc +Size (php-5.5.9.tar.bz2) = 13019443 bytes SHA1 (patch-acinclude.m4) = 9e9c433e4cb96e469f7cf14b2064a0f41fc4568a SHA1 (patch-configure) = 5e7e78fe0cdfdb76cb2cdf77ad8774becb2426a0 SHA1 (patch-ext_gd_config.m4) = 91c9798333d4776856a0a9e20196986856b758b2 @@ -14,7 +14,7 @@ SHA1 (patch-ext_pdo_config.m4) = 26a4ad02e5c6b7a54c3c54a6d026a3ccfed62c59 SHA1 (patch-ext_phar_Makefile.frag) = 1af23d9135557bc7ba2f3627b317d4cbef37aaba SHA1 (patch-ext_phar_phar_phar.php) = 011f2d68048dbc63f5efcab4e23062daa9e8e08c SHA1 (patch-ext_standard_basic__functions.c) = f2a44998145306c2cb2d2f3822c0e7cc70c778b4 -SHA1 (patch-makedist) = a2a77c3d15a28fee08fdd88f0c9fee6cbec107d8 +SHA1 (patch-makedist) = 3f6b0621d30264824f2cb4c2903d15ba95be3937 SHA1 (patch-php.ini-development) = 00245ed6a09f9faa9412e0749b087e2f0e01b33a SHA1 (patch-php.ini-production) = 89ae95ddb864fc55535c16210d9630c4b77ec54a SHA1 (patch-run-tests.php) = ff80b8ad52d7c0a43fa318ed9bffca9d7b3e688d diff --git a/lang/php55/patches/patch-makedist b/lang/php55/patches/patch-makedist index 6948f71984d..fbb16410cd9 100644 --- a/lang/php55/patches/patch-makedist +++ b/lang/php55/patches/patch-makedist @@ -1,13 +1,13 @@ -$NetBSD: patch-makedist,v 1.1 2013/07/29 16:41:02 taca Exp $ +$NetBSD: patch-makedist,v 1.2 2014/02/07 15:35:05 taca Exp $ ---- makedist.orig 2013-07-18 14:37:33.000000000 +0000 +--- makedist.orig 2014-02-05 10:00:36.000000000 +0000 +++ makedist @@ -35,7 +35,7 @@ if test "${1}" = "1" -a "${2}" -lt "28"; fi IFS="$old_IFS" --if test "$PHPROOTx" == "x"; then -+if test "$PHPROOTx" = "x"; then +-if test "x$PHPROOT" == "x"; then ++if test "x$PHPROOT" = "x"; then PHPROOT=git@git.php.net:php-src.git; fi |