[3.10] gh-102027: Fix macro name (GH-102124) (#102917)

gh-102027: Fix macro name (GH-102124)

This fixes the ssse3 / sse2 detection when sse4 is available.

(cherry picked from commit ea93bde4ec)

Co-authored-by: Max Bachmann <kontakt@maxbachmann.de>
Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
This commit is contained in:
Miss Islington (bot) 2023-03-24 05:40:32 -07:00 committed by GitHub
parent 0a2b63f6ad
commit 581dd8caba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
Fix SSE2 and SSE3 detection in ``_blake2`` internal module. Patch by Max
Bachmann.

View file

@ -53,7 +53,7 @@
#endif
#endif
#ifdef HAVE_SSE41
#ifdef HAVE_SSE4_1
#ifndef HAVE_SSSE3
#define HAVE_SSSE3
#endif