diff options
author | Santhosh Raju <fox@FreeBSD.org> | 2025-01-09 16:05:39 +0100 |
---|---|---|
committer | Santhosh Raju <fox@FreeBSD.org> | 2025-01-09 16:14:30 +0100 |
commit | ef5c2fd766bd184908969b0119d15cdeba54423f (patch) | |
tree | 089ccb4782dad8a4115450d3c6969b4cbc1191ea | |
parent | net-im/signal-desktop: Update to 7.36.1 (diff) |
security/wolfssl: Fix arm64 build.
-rw-r--r-- | security/wolfssl/files/patch-wolfcrypt_src_cpuid.c | 15 |
1 files changed, 15 insertions, 0 deletions
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; |