Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 May 2021 20:36:44 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d5e302a28d9a - main - security/ktls_isa-l_crypto-kmod: Only build on FreeBSD 13.
Message-ID:  <202105282036.14SKaiG4092890@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb (doc, src committer):

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

commit d5e302a28d9a91039558a26dfa7b782a998e4c1f
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2021-05-28 20:34:22 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2021-05-28 20:36:17 +0000

    security/ktls_isa-l_crypto-kmod: Only build on FreeBSD 13.
    
    FreeBSD 14 and later only use in-kernel crypto drivers for software
    KTLS.  The security/isal-kmod port provides an in-kernel crypto driver
    using the same ISA-L crypto library as this port.
    
    Reviewed by:    gallatin, sbz, markj
    Sponsored by:   Netflix
    Differential Revision:  https://reviews.freebsd.org/D30279
---
 security/ktls_isa-l_crypto-kmod/Makefile | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/security/ktls_isa-l_crypto-kmod/Makefile b/security/ktls_isa-l_crypto-kmod/Makefile
index a7da8ff5935f..dfd76df4a1ec 100644
--- a/security/ktls_isa-l_crypto-kmod/Makefile
+++ b/security/ktls_isa-l_crypto-kmod/Makefile
@@ -33,6 +33,10 @@ PLIST_FILES=	${KMODDIR}/ktls_intel-isa-l.ko
 IGNORE=		requires KTLS support
 .endif
 
+.if ${OSVERSION} >= 1400016
+IGNORE=		is only supported on FreeBSD 13
+.endif
+
 post-extract:
 	${CP} ${FILESDIR}/* ${WRKSRC}/
 	${ECHO} "#include <sys/stdint.h>" > ${WRKSRC}/include/stdint.h



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105282036.14SKaiG4092890>