diff options
author | Alessandro Ghedini <alessandro@cloudflare.com> | 2021-05-24 13:20:36 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-05-24 17:26:46 +0200 |
commit | 424aa64d54fd2c4baf69aa0c09bf5db347ff59f0 (patch) | |
tree | 2a71261c28e6d921b86cf2c48690672e78cdd860 /configure.ac | |
parent | a62e6435f4c110d14644bc8298d83c2e7b18dee5 (diff) | |
download | curl-424aa64d54fd2c4baf69aa0c09bf5db347ff59f0.tar.gz |
quiche: update for network path aware API
Latest version of quiche requires the application to pass the peer
address of received packets, and it provides the address for outgoing
packets back.
Closes #7120
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 5c697618b..4d2f4dcc6 100755 --- a/configure.ac +++ b/configure.ac @@ -2925,6 +2925,11 @@ if test X"$want_quiche" != Xno; then CURL_LIBRARY_PATH="$CURL_LIBRARY_PATH:$DIR_QUICHE" export CURL_LIBRARY_PATH AC_MSG_NOTICE([Added $DIR_QUICHE to CURL_LIBRARY_PATH]), + [], + [ +AC_INCLUDES_DEFAULT +#include <sys/socket.h> + ] ) ], dnl not found, revert back to clean variables |