diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-02-21 11:30:05 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-02-21 16:54:47 +0100 |
commit | 5808a0d0f5ea0399d4a2a22285f78c66f302c173 (patch) | |
tree | 826555e519dcce95f26cf0f09d7fcb32bb697948 /configure.ac | |
parent | 3a34b930aaa883d5343d19acbc01e969e1e59c72 (diff) | |
download | curl-5808a0d0f5ea0399d4a2a22285f78c66f302c173.tar.gz |
http2: now require nghttp2 >= 1.12.0
To simplify our code and since earlier versions lack important function
calls libcurl needs to function correctly.
nghttp2 1.12.0 was relased on June 26, 2016.
Closes #4961
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 7a6aa5303..bde7d8853 100755 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -3379,9 +3379,9 @@ if test X"$want_h2" != Xno; then CPPFLAGS="$CPPFLAGS $CPP_H2" LIBS="$LIB_H2 $LIBS" - # use nghttp2_option_set_no_recv_client_magic to require nghttp2 - # >= 1.0.0 - AC_CHECK_LIB(nghttp2, nghttp2_option_set_no_recv_client_magic, + # use nghttp2_session_set_local_window_size to require nghttp2 + # >= 1.12.0 + AC_CHECK_LIB(nghttp2, nghttp2_session_set_local_window_size, [ AC_CHECK_HEADERS(nghttp2/nghttp2.h, curl_h2_msg="enabled (nghttp2)" |