From 86f7b523f01b785776e3ae611bc01c5f81d8b2c2 Mon Sep 17 00:00:00 2001 From: Xadhoom <> Date: Fri, 1 Jan 2021 19:20:52 +0000 Subject: [PATCH] Permanently disable ZT_SALSA20_SSE --- node/Salsa20.hpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/node/Salsa20.hpp b/node/Salsa20.hpp index bfb6d9d9..885ec003 100644 --- a/node/Salsa20.hpp +++ b/node/Salsa20.hpp @@ -19,6 +19,12 @@ #define ZT_SALSA20_SSE 1 #endif +#if defined(ZT_SALSA20_SSE) +#if !ZT_SALSA20_SSE +#undef ZT_SALSA20_SSE +#endif +#endif + #ifdef ZT_SALSA20_SSE #include #endif // ZT_SALSA20_SSE