Skip to content

Commit 7918274

Browse files
committed
Enable MD5 when --enable-fips=v2|ready and --enable-opensslall are set
1 parent 6bba48d commit 7918274

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

configure.ac

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5487,7 +5487,9 @@ if test "$ENABLED_WPAS" = "yes" || test "$ENABLED_HAPROXY" = "yes" || \
54875487
test "$ENABLED_OPENSSLEXTRA" = "yes" || test "$ENABLED_OPENVPN" = "yes" || \
54885488
test "$ENABLED_TLSV10" = "yes" || test "$ENABLED_OLD_TLS" = "yes" || \
54895489
test "$ENABLED_FORTRESS" = "yes" || test "$ENABLED_LIGHTY" = "yes" || \
5490-
test "$ENABLED_DES3" = "yes" || test "$ENABLED_BUMP" = "yes"
5490+
test "$ENABLED_DES3" = "yes" || test "$ENABLED_BUMP" = "yes" || \
5491+
(test "$FIPS_VERSION" = "v2" && test "$ENABLED_OPENSSLALL" = "yes") || \
5492+
(test "$FIPS_VERSION" = "ready" && test "$ENABLED_OPENSSLALL" = "yes")
54915493
then
54925494
ENABLED_MD5=yes
54935495
fi

0 commit comments

Comments
 (0)