aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-06-29 22:35:52 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2023-06-30 00:50:51 +0000
commiteb00b7d1280b3b2326f2e342c9b203f7e0798174 (patch)
tree042d95e7b4c52630af8eabd26ba868d25b19dd42
parentb44cb8fae39643f9b876b4896021cad23dbd1acf (diff)
downloadports-eb00b7d1280b3b2326f2e342c9b203f7e0798174.tar.gz
ports-eb00b7d1280b3b2326f2e342c9b203f7e0798174.zip
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
-rw-r--r--lang/php80/Makefile3
1 files changed, 1 insertions, 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