diff options
author | Jack Lloyd <[email protected]> | 2015-09-11 23:37:49 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-09-11 23:37:49 -0400 |
commit | d83ef010522373a6f8ed3876c812b18b55513103 (patch) | |
tree | 31c859eb0261c37edd1441f00f996f3bd796c1d1 /src | |
parent | 72719f52640d2ac3ff00fce46a72082e5938d212 (diff) |
Fix for minimized builds
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/block/block_cipher.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/block/block_cipher.cpp b/src/lib/block/block_cipher.cpp index cc9d16737..616c6df5b 100644 --- a/src/lib/block/block_cipher.cpp +++ b/src/lib/block/block_cipher.cpp @@ -7,9 +7,12 @@ #include <botan/block_cipher.h> #include <botan/cpuid.h> -#include <botan/internal/simd_32.h> #include <botan/internal/block_utils.h> +#if defined(BOTAN_HAS_SIMD_32) +#include <botan/internal/simd_32.h> +#endif + #if defined(BOTAN_HAS_AES) #include <botan/aes.h> #endif |