aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/block_cipher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/block/block_cipher.cpp')
-rw-r--r--src/lib/block/block_cipher.cpp5
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