mirror of https://github.com/wolfSSL/wolfssl.git
Merge pull request #5368 from lealem47/disableAes
Fix for --disable-aes without --disable-aesgcmpull/5371/head
commit
9a3efb67b8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue