Merge pull request #5368 from lealem47/disableAes

Fix for --disable-aes without --disable-aesgcm
pull/5371/head
David Garske 2022-07-18 15:05:59 -07:00 committed by GitHub
commit 9a3efb67b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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