From: Daniel Stenberg Date: Tue, 4 Apr 2023 08:47:35 +0000 (+0200) Subject: configure: make quiche require quiche_conn_send_ack_eliciting X-Git-Tag: curl-8_1_0~223 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=164dab7864337a5ae2fe0aaa7c4a7d34ca763498;p=thirdparty%2Fcurl.git configure: make quiche require quiche_conn_send_ack_eliciting curl now requires quiche version >= 1.17.1 to be used and this function was added in this version and makes a convenient check. This requirement is because this is the lowest quiche version that supports peer-initiated key updates correctly. Closes #10886 --- diff --git a/configure.ac b/configure.ac index e351d1e184..b3af711762 100644 --- a/configure.ac +++ b/configure.ac @@ -3224,7 +3224,7 @@ if test X"$want_quiche" != Xno; then if test "x$cross_compiling" != "xyes"; then DIR_QUICHE=`echo $LD_QUICHE | $SED -e 's/^-L//'` fi - AC_CHECK_LIB(quiche, quiche_connect, + AC_CHECK_LIB(quiche, quiche_conn_send_ack_eliciting, [ AC_CHECK_HEADERS(quiche.h, experimental="$experimental HTTP3"