git: c2e57dd637b7 - main - lang/php80: Fix build with llvm16

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Fri, 23 Jun 2023 19:30:56 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=c2e57dd637b7daec09549f98b32e6274e8ae2716

commit c2e57dd637b7daec09549f98b32e6274e8ae2716
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2023-06-23 18:59:10 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2023-06-23 19:30:41 +0000

    lang/php80: Fix build with llvm16
    
    It will take more time to merge OpenSSL 3 in the base so allow this to
    build with llvm16 for now.
    
    Sponsored by:   The FreeBSD Foundation
---
 lang/php80/Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lang/php80/Makefile b/lang/php80/Makefile
index 792ac781a46e..38d757ddbc23 100644
--- a/lang/php80/Makefile
+++ b/lang/php80/Makefile
@@ -101,8 +101,9 @@ WARNING=	"!!! If you have a threaded Apache, you must build ${PHP_PORT} with ZTS
 
 .include <bsd.port.options.mk>
 
-.if ( ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400089 && ${SSL_DEFAULT} == base ) || ${SSL_DEFAULT:Mopenssl3*}
-IGNORE_SSL=	base openssl30 openssl31
+#.if ( ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400092 && ${SSL_DEFAULT} == base ) || ${SSL_DEFAULT:Mopenssl3*}
+.if ${SSL_DEFAULT:Mopenssl3*}
+IGNORE_SSL=	openssl30 openssl31
 IGNORE_SSL_REASON=	Missing upstream support for OpenSSL 3.0.0 and later
 .endif