Date: Thu, 24 Sep 2020 23:07:51 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r549972 - head/net/ntpsec Message-ID: <202009242307.08ON7pab082043@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009242307.08ON7pab082043>