gh-102027: Fix macro name (#102124)

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

Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
This commit is contained in:
Max Bachmann 2023-03-22 14:44:28 +01:00 committed by GitHub
parent 61405da9a5
commit ea93bde4ec
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