diff options
author | Jack Lloyd <[email protected]> | 2019-02-16 11:25:38 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-02-16 11:25:38 -0500 |
commit | b8199a7a4f8cff49a6c09ffc769494d48ae7f3fd (patch) | |
tree | 3fa352d2bdb512c1c64b7c4b194e23b2a8ba4603 /src/lib/block/serpent | |
parent | 60e00a8282cf509fb92005a8a5812ab90215899d (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.cpp | 2 |
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 |