Skip to content

Commit 0cf3728

Browse files
committed
update "--enable-jni --enable-all" combo to exclude QUIC and ECH, not compatible with WOLFSSL_TLS13_MIDDLEBOX_COMPAT
1 parent b45217d commit 0cf3728

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

configure.ac

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,8 @@ then
10871087

10881088
if test "$ENABLED_LINUXKM_DEFAULTS" != "yes"
10891089
then
1090-
test "$enable_quic" = "" && test "$enable_cryptonly" != "yes" && enable_quic=yes
1090+
# Disable QUIC with JNI since incompatible with WOLFSSL_TLS13_MIDDLEBOX_COMPAT
1091+
test "$enable_quic" = "" && test "$enable_cryptonly" != "yes" && test "$enable_jni" != "yes" && enable_quic=yes
10911092
AM_CFLAGS="$AM_CFLAGS -DHAVE_CRL_IO -DHAVE_IO_TIMEOUT"
10921093
fi
10931094

@@ -1104,7 +1105,8 @@ then
11041105

11051106
if test "$ENABLED_FIPS" = "no"
11061107
then
1107-
test "$enable_ech" = "" && enable_ech=yes
1108+
# Disable ECH with JNI since incompatible with WOLFSSL_TLS13_MIDDLEBOX_COMPAT
1109+
test "$enable_ech" = "" && test "$enable_jni" != "yes" && enable_ech=yes
11081110
test "$enable_scep" = "" && enable_scep=yes
11091111
test "$enable_mcast" = "" && enable_mcast=yes
11101112
fi

0 commit comments

Comments
 (0)