Skip to content

Commit 1df2616

Browse files
committed
configure.ac: exclude AES-EAX from --enable-all-crypto when --enable-afalg.
1 parent 9619946 commit 1df2616

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,8 @@ then
15461546
test "$enable_ed448" = "" && enable_ed448=yes
15471547
test "$enable_ed448_stream" = "" && test "$enable_ed448" != "no" && enable_ed448_stream=yes
15481548
test "$enable_aessiv" = "" && enable_aessiv=yes
1549-
test "$enable_aeseax" = "" && enable_aeseax=yes
1549+
# AFALG lacks AES-EAX
1550+
test "$enable_aeseax" = "" && test "$enable_afalg" != "yes" && enable_aeseax=yes
15501551

15511552
if test "$KERNEL_MODE_DEFAULTS" != "yes"
15521553
then

0 commit comments

Comments
 (0)