From cee9f9a8718e0a4229301df42453fd8a7b751f4b Mon Sep 17 00:00:00 2001 From: Lealem Amedie Date: Mon, 18 Jul 2022 10:26:20 -0700 Subject: [PATCH] Fix for --disable-aes without --disable-aesgcm --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e87979e06..06be8cc73 100644 --- a/configure.ac +++ b/configure.ac @@ -3676,7 +3676,7 @@ then then AC_MSG_ERROR([cannot enable eccencrypt and hkdf without aes.]) fi - if test "$ENABLED_AESGCM" = "yes" + if test "$ENABLED_AESGCM" != "no" then AC_MSG_ERROR([AESGCM requires AES.]) fi