Date: Sat, 18 Apr 2026 08:59:08 +0000 From: Santhosh Raju <fox@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 05fbeda50453 - main - security/wolfssl: Enable performance optimizations. Message-ID: <69e347dc.1d8cd.6578e368@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by fox: URL: https://cgit.FreeBSD.org/ports/commit/?id=05fbeda5045347e6e11f64c41a5b5d23fe943ed4 commit 05fbeda5045347e6e11f64c41a5b5d23fe943ed4 Author: Santhosh Raju <fox@FreeBSD.org> AuthorDate: 2026-04-18 08:56:27 +0000 Commit: Santhosh Raju <fox@FreeBSD.org> CommitDate: 2026-04-18 08:59:01 +0000 security/wolfssl: Enable performance optimizations. Enable AVX for amd64 build. PR: 294422 Reported by: Daniel Engberg <diizzy@FreeBSD.org> --- security/wolfssl/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/security/wolfssl/Makefile b/security/wolfssl/Makefile index 4485f099a610..a458dae3a447 100644 --- a/security/wolfssl/Makefile +++ b/security/wolfssl/Makefile @@ -1,5 +1,6 @@ PORTNAME= wolfssl PORTVERSION= 5.9.1 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= https://www.wolfssl.com/ \ LOCAL/fox @@ -38,7 +39,12 @@ CONFIGURE_ARGS= --disable-dependency-tracking \ --enable-static \ --enable-tls13 \ --enable-tls13-draft18 \ - --enable-keying-material + --enable-keying-material \ + --enable-all-asm + +.if "${ARCH}" == "amd64" +CONFIGURE_ARGS+= --enable-aesni-with-avx +.endif TEST_TARGET= check CFLAGS+= -DWOLFSSL_ALT_NAMES -DWOLFSSL_GETRANDOM=1 -DWOLFSSL_TLS13_MIDDLEBOX_COMPAThome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69e347dc.1d8cd.6578e368>
