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
|
then
|
||||||
AC_MSG_ERROR([cannot enable eccencrypt and hkdf without aes.])
|
AC_MSG_ERROR([cannot enable eccencrypt and hkdf without aes.])
|
||||||
fi
|
fi
|
||||||
if test "$ENABLED_AESGCM" = "yes"
|
if test "$ENABLED_AESGCM" != "no"
|
||||||
then
|
then
|
||||||
AC_MSG_ERROR([AESGCM requires AES.])
|
AC_MSG_ERROR([AESGCM requires AES.])
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue