summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Zuehlsdorff <tz@FreeBSD.org>2019-05-08 06:46:57 +0000
committerTorsten Zuehlsdorff <tz@FreeBSD.org>2019-05-08 06:46:57 +0000
commite36808edb850a668676164e2266839b6c74a4631 (patch)
treecfc1031654eddd33d25e8b1ea62a21b45ab8c8a4
parentlang/php72: Upgrade from 7.2.17 to 7.2.18 (diff)
lang/php73: Upgrade from 7.3.4 to 7.3.5
Changelog: Core: Fixed bug #77903 (ArrayIterator stops iterating after offsetSet call). CLI: Fixed bug #77794 (Incorrect Date header format in built-in server). EXIF: Fixed bug #77950 (Heap-buffer-overflow in _estrndup via exif_process_IFD_TAG). Interbase: Fixed bug #72175 (Impossibility of creating multiple connections to Interbase with php 7.x). Intl: Fixed bug #77895 (IntlDateFormatter::create fails in strict mode if $locale = null). litespeed: LiteSpeed SAPI 7.3.1, better process management, new API function litespeed_finish_request(). LDAP: Fixed bug #77869 (Core dump when using server controls) (mcmic) Mail: Fixed bug #77821 (Potential heap corruption in TSendMail()). mbstring: Implemented FR #72777 (Implement regex stack limits for mbregex functions). MySQLi: Fixed bug #77773 (Unbuffered queries leak memory - MySQLi / mysqlnd). PCRE: Fixed bug #77827 (preg_match does not ignore \r in regex flags). PDO: Fixed bug #77849 (Disable cloning of PDO handle/connection objects). phpdbg: Fixed bug #76801 (too many open files). Fixed bug #77800 (phpdbg segfaults on listing some conditional breakpoints). Fixed bug #77805 (phpdbg build fails when readline is shared). Reflection: Fixed bug #77772 (ReflectionClass::getMethods(null) doesn't work). Fixed bug #77882 (Different behavior: always calls destructor). Standard: Fixed bug #77793 (Segmentation fault in extract() when overwriting reference with itself). Fixed bug #77844 (Crash due to null pointer in parse_ini_string with INI_SCANNER_TYPED). Fixed bug #77853 (Inconsistent substr_compare behaviour with empty haystack). Changelog taken from: https://www.php.net/ChangeLog-7.php#7.3.5 MFH: 2019Q2
Notes
Notes: svn path=/head/; revision=501001
-rw-r--r--databases/php73-interbase/files/patch-interbase.c11
-rw-r--r--lang/php73/Makefile4
-rw-r--r--lang/php73/distinfo6
-rw-r--r--lang/php73/files/patch-acinclude.m42
4 files changed, 6 insertions, 17 deletions
diff --git a/databases/php73-interbase/files/patch-interbase.c b/databases/php73-interbase/files/patch-interbase.c
deleted file mode 100644
index 0f8791beb793..000000000000
--- a/databases/php73-interbase/files/patch-interbase.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- interbase.c.orig 2016-12-16 10:59:02 UTC
-+++ interbase.c
-@@ -940,7 +940,7 @@ static void _php_ibase_connect(INTERNAL_
- xlink = (zend_resource*) le->ptr;
- if ((!persistent && xlink->type == le_link) || xlink->type == le_plink) {
- if (IBG(default_link)) {
-- zend_list_close(IBG(default_link));
-+ zend_list_delete(IBG(default_link));
- }
- xlink->gc.refcount++;
- xlink->gc.refcount++;
diff --git a/lang/php73/Makefile b/lang/php73/Makefile
index 72075e28588c..44bd801a0f5c 100644
--- a/lang/php73/Makefile
+++ b/lang/php73/Makefile
@@ -1,8 +1,8 @@
# $FreeBSD$
PORTNAME= php73
-DISTVERSION= 7.3.4
-PORTREVISION?= 4
+DISTVERSION= 7.3.5
+PORTREVISION?= 0
CATEGORIES?= lang devel www
MASTER_SITES= PHP/distributions
DISTNAME= php-${DISTVERSION}
diff --git a/lang/php73/distinfo b/lang/php73/distinfo
index 8808c7038680..4b621ca99982 100644
--- a/lang/php73/distinfo
+++ b/lang/php73/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1554455789
-SHA256 (php-7.3.4.tar.xz) = 6fe79fa1f8655f98ef6708cde8751299796d6c1e225081011f4104625b923b83
-SIZE (php-7.3.4.tar.xz) = 11977004
+TIMESTAMP = 1557174604
+SHA256 (php-7.3.5.tar.xz) = e1011838a46fd4a195c8453b333916622d7ff5bce4aca2d9d99afac142db2472
+SIZE (php-7.3.5.tar.xz) = 11981356
diff --git a/lang/php73/files/patch-acinclude.m4 b/lang/php73/files/patch-acinclude.m4
index 531c9ab426fd..0613cec83899 100644
--- a/lang/php73/files/patch-acinclude.m4
+++ b/lang/php73/files/patch-acinclude.m4
@@ -5,7 +5,7 @@
dnl ---------------------------------------------- CLI static module
[PHP_]translit($1,a-z_-,A-Z__)[_SHARED]=no
- case "$PHP_SAPI" in
-- cgi|embed[)]
+- cgi|embed|phpdbg[)]
- PHP_ADD_SOURCES($ext_dir,$2,$ac_extra,)
- EXT_STATIC="$EXT_STATIC $1;$ext_dir"
- ;;