Date: Tue, 14 Jan 2025 21:28:37 GMT From: Santhosh Raju <fox@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: 3c4d9fcca490 - 2025Q1 - security/wolfssl: Fix arm64 build. Message-ID: <202501142128.50ELSb4c067821@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch 2025Q1 has been updated by fox: URL: https://cgit.FreeBSD.org/ports/commit/?id=3c4d9fcca490c41e22b4a683b07d3a466f83aa39 commit 3c4d9fcca490c41e22b4a683b07d3a466f83aa39 Author: Santhosh Raju <fox@FreeBSD.org> AuthorDate: 2025-01-09 15:05:39 +0000 Commit: Santhosh Raju <fox@FreeBSD.org> CommitDate: 2025-01-14 21:27:06 +0000 security/wolfssl: Fix arm64 build. (cherry picked from commit ef5c2fd766bd184908969b0119d15cdeba54423f) --- security/wolfssl/files/patch-wolfcrypt_src_cpuid.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/security/wolfssl/files/patch-wolfcrypt_src_cpuid.c b/security/wolfssl/files/patch-wolfcrypt_src_cpuid.c new file mode 100644 index 000000000000..3dbdc77ce299 --- /dev/null +++ b/security/wolfssl/files/patch-wolfcrypt_src_cpuid.c @@ -0,0 +1,15 @@ +Fix the typo in the aarch64 macro + +https://github.com/wolfSSL/wolfssl/pull/8346 + +--- wolfcrypt/src/cpuid.c.orig 2025-01-09 14:23:01 UTC ++++ wolfcrypt/src/cpuid.c +@@ -259,7 +259,7 @@ + + if (features & CPUID_AARCH64_FEAT_AES) + cpuid_flags |= CPUID_AES; +- if (features & CPUID_AARCH64_FEAT_PMULL) ++ if (features & CPUID_AARCH64_FEAT_AES_PMULL) + cpuid_flags |= CPUID_PMULL; + if (features & CPUID_AARCH64_FEAT_SHA256) + cpuid_flags |= CPUID_SHA256;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501142128.50ELSb4c067821>