Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-102027: Fix macro name (GH-102124)
This fixes the ssse3 / sse2 detection when sse4 is available.

(cherry picked from commit ea93bde)

Co-authored-by: Max Bachmann <kontakt@maxbachmann.de>
Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
  • Loading branch information
2 people authored and miss-islington committed Mar 22, 2023
commit 4b2f1cbd370ba3045cdc4f38f2496045047ab364
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Fix SSE2 and SSE3 detection in ``_blake2`` internal module. Patch by Max
Bachmann.
2 changes: 1 addition & 1 deletion Modules/_blake2/impl/blake2-config.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#endif
#endif

#ifdef HAVE_SSE41
#ifdef HAVE_SSE4_1
#ifndef HAVE_SSSE3
#define HAVE_SSSE3
#endif
Expand Down