aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/serpent
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-02-16 11:25:38 -0500
committerJack Lloyd <[email protected]>2019-02-16 11:25:38 -0500
commitb8199a7a4f8cff49a6c09ffc769494d48ae7f3fd (patch)
tree3fa352d2bdb512c1c64b7c4b194e23b2a8ba4603 /src/lib/block/serpent
parent60e00a8282cf509fb92005a8a5812ab90215899d (diff)
Fixes for minimized builds
Various configurations would fail build or test, fix that.
Diffstat (limited to 'src/lib/block/serpent')
-rw-r--r--src/lib/block/serpent/serpent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/serpent/serpent.cpp b/src/lib/block/serpent/serpent.cpp
index 35231cab5..98e701738 100644
--- a/src/lib/block/serpent/serpent.cpp
+++ b/src/lib/block/serpent/serpent.cpp
@@ -10,7 +10,7 @@
#include <botan/rotate.h>
#include <botan/internal/serpent_sbox.h>
-#if defined(BOTAN_HAS_SERPENT_SIMD)
+#if defined(BOTAN_HAS_SERPENT_SIMD) || defined(BOTAN_HAS_SERPENT_AVX2)
#include <botan/cpuid.h>
#endif