summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-03-24 12:40:22 (GMT)
committerGitHub <noreply@github.com>2023-03-24 12:40:22 (GMT)
commit67161396ded841d201ef70bb7158f780b19b3356 (patch)
tree4d2bd706f5dcf0bfb561a082b4226e2bc813785a
parente075631f672730067fe467fd6d058e6bfec9cbec (diff)
downloadcpython-67161396ded841d201ef70bb7158f780b19b3356.zip
cpython-67161396ded841d201ef70bb7158f780b19b3356.tar.gz
cpython-67161396ded841d201ef70bb7158f780b19b3356.tar.bz2
[3.11] gh-102027: Fix macro name (GH-102124) (#102916)
gh-102027: Fix macro name (GH-102124) This fixes the ssse3 / sse2 detection when sse4 is available. (cherry picked from commit ea93bde4ece139d4152a59f2c38aa6568559447c) Co-authored-by: Max Bachmann <kontakt@maxbachmann.de> Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-02-21-23-42-39.gh-issue-102027.fQARG0.rst2
-rw-r--r--Modules/_blake2/impl/blake2-config.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-02-21-23-42-39.gh-issue-102027.fQARG0.rst b/Misc/NEWS.d/next/Core and Builtins/2023-02-21-23-42-39.gh-issue-102027.fQARG0.rst
new file mode 100644
index 0000000..42d96b5
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-02-21-23-42-39.gh-issue-102027.fQARG0.rst
@@ -0,0 +1,2 @@
+Fix SSE2 and SSE3 detection in ``_blake2`` internal module. Patch by Max
+Bachmann.
diff --git a/Modules/_blake2/impl/blake2-config.h b/Modules/_blake2/impl/blake2-config.h
index f5dd6fa..c09cb4b 100644
--- a/Modules/_blake2/impl/blake2-config.h
+++ b/Modules/_blake2/impl/blake2-config.h
@@ -53,7 +53,7 @@
#endif
#endif
-#ifdef HAVE_SSE41
+#ifdef HAVE_SSE4_1
#ifndef HAVE_SSSE3
#define HAVE_SSSE3
#endif