diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2022-02-19 04:42:29 +0000 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2022-02-19 04:42:29 +0000 |
commit | 11c9b8a17e718f9e60d2190b70dd57201533723f (patch) | |
tree | a2e3315790bfeba475cd355145b68a254227a6e9 | |
parent | 1c4499c1c3d79f87d5fdb88bcec3cae9a9209755 (diff) | |
download | ports-11c9b8a17e718f9e60d2190b70dd57201533723f.tar.gz ports-11c9b8a17e718f9e60d2190b70dd57201533723f.zip |
lang/php80: Update version 8.0.15=>8.0.16
Core:
Fixed bug #81430 (Attribute instantiation leaves dangling pointer).
Fixed bug #7896 (Environment vars may be mangled on Windows).
FFI:
Fixed bug #7867 (FFI::cast() from pointer to array is broken).
Filter:
Fix #81708: UAF due to php_filter_float() failing for ints.
FPM:
Fixed memory leak on invalid port.
MBString:
Fixed bug #7902 (mb_send_mail may delimit headers with LF only).
MySQLnd:
Fixed bug #7972 (MariaDB version prefix 5.5.5- is not stripped).
Sockets:
Fixed ext/sockets build on Haiku.
Fixed bug #7978 (sockets extension compilation errors).
Standard:
Fixed bug #7875 (mails are sent even if failure to log throws exception).
Approved by: tz (private email)
Sponsored by: Bounce Experts
-rw-r--r-- | lang/php80/Makefile | 4 | ||||
-rw-r--r-- | lang/php80/Makefile.ext | 6 | ||||
-rw-r--r-- | lang/php80/distinfo | 6 |
3 files changed, 9 insertions, 7 deletions
diff --git a/lang/php80/Makefile b/lang/php80/Makefile index 4443865355dd..1abdb557efca 100644 --- a/lang/php80/Makefile +++ b/lang/php80/Makefile @@ -1,6 +1,6 @@ PORTNAME= php80 -DISTVERSION= 8.0.15 -PORTREVISION?= 1 +DISTVERSION= 8.0.16 +PORTREVISION?= 0 CATEGORIES?= lang devel www MASTER_SITES= PHP DISTNAME= php-${DISTVERSION} diff --git a/lang/php80/Makefile.ext b/lang/php80/Makefile.ext index 1ec7953be95e..5a251c4a2a06 100644 --- a/lang/php80/Makefile.ext +++ b/lang/php80/Makefile.ext @@ -109,7 +109,8 @@ CONFIGURE_ARGS+=--enable-filter \ CONFIGURE_ARGS+=--enable-ftp CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" + OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" \ + PHP_OPENSSL=yes LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USES+= ssl pkgconfig @@ -176,7 +177,8 @@ CONFIGURE_ARGS+=--with-imap=${LOCALBASE} \ --with-imap-ssl=${OPENSSLBASE} CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ - OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" + OPENSSL_LIBS="-L${OPENSSLLIB} -lssl -lcrypto" \ + PHP_OPENSSL=yes LDFLAGS+= -L${OPENSSLLIB} -lcrypto -lssl USES+= ssl diff --git a/lang/php80/distinfo b/lang/php80/distinfo index 19e6f57c3360..fcb7e15a66fb 100644 --- a/lang/php80/distinfo +++ b/lang/php80/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1642749988 -SHA256 (php/php-8.0.15.tar.xz) = 5f33544061d37d805a2a9ce791f081ef08a7155bd7ba2362e69bba2d06b0f8b2 -SIZE (php/php-8.0.15.tar.xz) = 10764936 +TIMESTAMP = 1645245414 +SHA256 (php/php-8.0.16.tar.xz) = f27a2f25259e8c51e42dfd74e24a546ee521438ad7d9f6c6e794aa91f38bab0a +SIZE (php/php-8.0.16.tar.xz) = 10864076 |