Date: Thu, 9 Jan 2025 15:14:50 GMT 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: ef5c2fd766bd - main - security/wolfssl: Fix arm64 build. Message-ID: <202501091514.509FEo9A085528@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202501091514.509FEo9A085528>