Merge pull request #5368 from lealem47/disableAes

Fix for --disable-aes without --disable-aesgcm
This commit is contained in:
David Garske
2022-07-18 15:05:59 -07:00
committed by GitHub

View File

@ -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