From 11f1159e3005a17691d421ce1741ad1335ae35c3 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Fri, 17 Jul 2015 09:30:25 -0600 Subject: [PATCH] fortress relies on aes disallowed pair --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 96b6b4e39..7f132c0f1 100644 --- a/configure.ac +++ b/configure.ac @@ -1000,6 +1000,10 @@ AC_ARG_ENABLE([aes], if test "$ENABLED_AES" = "no" then AM_CFLAGS="$AM_CFLAGS -DNO_AES" + if test "$ENABLED_FORTRESS" = "yes" + then + AC_MSG_ERROR([fortress requires aes]) + fi if test "$ENABLED_ECC_ENCRYPT" = "yes" then AC_MSG_ERROR([cannot enable eccencrypt and hkdf without aes.])