Date: Fri, 30 Jun 2023 00:53:43 GMT From: Muhammad Moinur Rahman <bofh@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: eb00b7d1280b - main - lang/php80: Mark IGNORE_SSL for 14 Message-ID: <202306300053.35U0rhbB029081@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=eb00b7d1280b3b2326f2e342c9b203f7e0798174 commit eb00b7d1280b3b2326f2e342c9b203f7e0798174 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2023-06-29 22:35:52 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2023-06-30 00:50:51 +0000 lang/php80: Mark IGNORE_SSL for 14 This was marked IGNORE_SSL for OpenSSL 3 and later in an earlier commit as there is no upstream support for OpenSSL 3 however that was reverted as it got delayed in merging the OpenSSL in the base. As we have a proper OSVERSION now this patch fixes the OSVERSION logic. Sponsored by: Bounce Experts Sponsored by: The FreeBSD Foundation --- lang/php80/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lang/php80/Makefile b/lang/php80/Makefile index 38d757ddbc23..fed3d604f2d8 100644 --- a/lang/php80/Makefile +++ b/lang/php80/Makefile @@ -101,8 +101,7 @@ WARNING= "!!! If you have a threaded Apache, you must build ${PHP_PORT} with ZTS .include <bsd.port.options.mk> -#.if ( ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092 && ${SSL_DEFAULT} == base ) || ${SSL_DEFAULT:Mopenssl3*} -.if ${SSL_DEFAULT:Mopenssl3*} +.if ( ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092 && ${SSL_DEFAULT} == base ) || ${SSL_DEFAULT:Mopenssl3*} IGNORE_SSL= openssl30 openssl31 IGNORE_SSL_REASON= Missing upstream support for OpenSSL 3.0.0 and later .endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202306300053.35U0rhbB029081>