summaryrefslogtreecommitdiff
path: root/lang/php56/patches
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2014-12-19 16:12:48 +0000
committertaca <taca@pkgsrc.org>2014-12-19 16:12:48 +0000
commit417b9c0f44b698c26e9f989348525f522927cd3e (patch)
tree1f743189ab4367830d07f0101b15e20e5285a9ba /lang/php56/patches
parentb53870a85e1af9f59609d79834579f57a0640874 (diff)
downloadpkgsrc-417b9c0f44b698c26e9f989348525f522927cd3e.tar.gz
Update php56 to 5.6.4, including security fix.
18 Dec 2014, PHP 5.6.4 - Core: . Fixed bug #68091 (Some Zend headers lack appropriate extern "C" blocks). (Adam) . Fixed bug #68104 (Segfault while pre-evaluating a disabled function). (Laruence) . Fixed bug #68185 ("Inconsistent insteadof definition."- incorrectly triggered). (Julien) . Fixed bug #68355 (Inconsistency in example php.ini comments). (Chris McCafferty) . Fixed bug #68370 ("unset($this)" can make the program crash). (Laruence) . Fixed bug #68422 (Incorrect argument reflection info for array_multisort()). (Alexander Lisachenko) . Fixed bug #68545 (NULL pointer dereference in unserialize.c). (Anatol) . Fixed bug #68446 (Array constant not accepted for array parameter default). (Bob, Dmitry) . Fixed bug #68594 (Use after free vulnerability in unserialize()). (CVE-2014-8142) (Stefan Esser) - Date: . Fixed day_of_week function as it could sometimes return negative values internally. (Derick) - FPM: . Fixed bug #68381 (fpm_unix_init_main ignores log_level). (David Zuelke, Remi) . Fixed bug #68420 (listen=9000 listens to ipv6 localhost instead of all addresses). (Remi) . Fixed bug #68421 (access.format='%R' doesn't log ipv6 address). (Remi) . Fixed bug #68423 (PHP-FPM will no longer load all pools). (Remi) . Fixed bug #68428 (listen.allowed_clients is IPv4 only). (Remi) . Fixed bug #68452 (php-fpm man page is oudated). (Remi) . Fixed request #68458 (Change pm.start_servers default warning to notice). (David Zuelke, Remi) . Fixed bug #68463 (listen.allowed_clients can silently result in no allowed access). (Remi) . Fixed request #68391 (php-fpm conf files loading order). (Florian Margaine, Remi) . Fixed bug #68478 (access.log don't use prefix). (Remi) - Mcrypt: . Fixed possible read after end of buffer and use after free. (Dmitry) - GMP: . Fixed bug #68419 (build error with gmp 4.1). (Remi) - PDO_pgsql: . Fixed bug #67462 (PDO_PGSQL::beginTransaction() wrongly throws exception when not in transaction) (Matteo) . Fixed bug #68351 (PDO::PARAM_BOOL and ATTR_EMULATE_PREPARES misbehaving) (Matteo) - Session: . Fixed bug #68331 (Session custom storage callable functions not being called) (Yasuo Ohgaki) - SOAP: . Fixed bug #68361 (Segmentation fault on SoapClient::__getTypes). (Laruence) - zlib: . Fixed bug #53829 (Compiling PHP with large file support will replace function gzopen by gzopen64) (Sascha Kettler, Matteo)
Diffstat (limited to 'lang/php56/patches')
-rw-r--r--lang/php56/patches/patch-ext_phar_Makefile.frag6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/php56/patches/patch-ext_phar_Makefile.frag b/lang/php56/patches/patch-ext_phar_Makefile.frag
index 5843ef54640..21a17b7ed9f 100644
--- a/lang/php56/patches/patch-ext_phar_Makefile.frag
+++ b/lang/php56/patches/patch-ext_phar_Makefile.frag
@@ -1,6 +1,6 @@
-$NetBSD: patch-ext_phar_Makefile.frag,v 1.1 2014/11/24 15:37:08 taca Exp $
+$NetBSD: patch-ext_phar_Makefile.frag,v 1.2 2014/12/19 16:12:48 taca Exp $
---- ext/phar/Makefile.frag.orig 2014-11-12 13:52:21.000000000 +0000
+--- ext/phar/Makefile.frag.orig 2014-12-17 01:25:00.000000000 +0000
+++ ext/phar/Makefile.frag
@@ -18,7 +18,7 @@ PHP_PHARCMD_EXECUTABLE = ` \
else \
@@ -15,7 +15,7 @@ $NetBSD: patch-ext_phar_Makefile.frag,v 1.1 2014/11/24 15:37:08 taca Exp $
-@$(mkinstalldirs) $(INSTALL_ROOT)$(bindir)
$(INSTALL) $(builddir)/phar.phar $(INSTALL_ROOT)$(bindir)
-@rm -f $(INSTALL_ROOT)$(bindir)/phar
-- $(LN_S) -f $(bindir)/phar.phar $(INSTALL_ROOT)$(bindir)/phar
+- $(LN_S) -f $(INSTALL_ROOT)$(bindir)/phar.phar $(INSTALL_ROOT)$(bindir)/phar
+ $(LN_S) -f phar.phar $(INSTALL_ROOT)$(bindir)/phar
@$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man1
@$(INSTALL_DATA) $(builddir)/phar.1 $(INSTALL_ROOT)$(mandir)/man1/phar.1