svn commit: r549972 - head/net/ntpsec

Yuri Victorovich yuri at FreeBSD.org
Thu Sep 24 23:07:52 UTC 2020


Author: yuri
Date: Thu Sep 24 23:07:51 2020
New Revision: 549972
URL: https://svnweb.freebsd.org/changeset/ports/549972

Log:
  net/ntpsec: Broken on 11 with SSL_DEFAULT=base because TLSv1.3 isn't supported in OpenSSL there
  
  Reported by:	fallout

Modified:
  head/net/ntpsec/Makefile

Modified: head/net/ntpsec/Makefile
==============================================================================
--- head/net/ntpsec/Makefile	Thu Sep 24 22:55:26 2020	(r549971)
+++ head/net/ntpsec/Makefile	Thu Sep 24 23:07:51 2020	(r549972)
@@ -24,6 +24,12 @@ MAKE_ENV=	NOSYNC=1 # workaround for the console proble
 
 PORTSCOUT=	limit:^\d+\. # prevent alpha-numeric strings
 
+.include <bsd.port.options.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200000 && ${SSL_DEFAULT} == base
+BROKEN=		Needs OpenSSL with TLSv1.3 support but OpenSSL in base on FreeBSD 11 doesn't support TLSv1.3
+.endif
+
 post-install: # autoplist: plist varies depending on the python version
 	@cd ${STAGEDIR}${PREFIX} && \
 		${FIND} * -type f -or -type l | ${SED} -e 's|^share/man/.*|&.gz|' >> ${TMPPLIST}


More information about the svn-ports-all mailing list