aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/encryption.cpp
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-04-18 17:37:00 +0200
committerSimon Warta <[email protected]>2017-04-18 17:37:00 +0200
commit26475e2075f30c2348f5dfd1982464b90f5bc09a (patch)
treed2b53c991230bb390a46a4e34ad019a5e6811a09 /src/cli/encryption.cpp
parentbb13e9125119c4eecff7e4fe03bd620a5f145ce6 (diff)
Add BOTAN_HAS_AEAD_MODES requirement for encryption cli
Diffstat (limited to 'src/cli/encryption.cpp')
-rw-r--r--src/cli/encryption.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/encryption.cpp b/src/cli/encryption.cpp
index 86a88cd80..7bf7ae678 100644
--- a/src/cli/encryption.cpp
+++ b/src/cli/encryption.cpp
@@ -6,7 +6,7 @@
#include "cli.h"
-#if defined(BOTAN_HAS_AES)
+#if defined(BOTAN_HAS_AES) && defined(BOTAN_HAS_AEAD_MODES)
#include <botan/aes.h>
#include <botan/aead.h>