From 164dab7864337a5ae2fe0aaa7c4a7d34ca763498 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 4 Apr 2023 10:47:35 +0200 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"