git: ef5c2fd766bd - main - security/wolfssl: Fix arm64 build.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 09 Jan 2025 15:14:50 UTC
The branch main has been updated by fox: URL: https://cgit.FreeBSD.org/ports/commit/?id=ef5c2fd766bd184908969b0119d15cdeba54423f commit ef5c2fd766bd184908969b0119d15cdeba54423f Author: Santhosh Raju <fox@FreeBSD.org> AuthorDate: 2025-01-09 15:05:39 +0000 Commit: Santhosh Raju <fox@FreeBSD.org> CommitDate: 2025-01-09 15:14:30 +0000 security/wolfssl: Fix arm64 build. --- 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;