diff options
author | robot-contrib <[email protected]> | 2023-07-27 07:44:08 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2023-07-27 07:44:08 +0300 |
commit | a4d459e1893178cc5bb63e8ffe1b90c15857c703 (patch) | |
tree | ffdb09a3b1bb2ed9fc1b5e38f85a090d64f87811 | |
parent | 8d58b1fa67e609fbfb7f809f0ce408588ed864cc (diff) |
Update contrib/libs/nghttp2 to 1.55.0
-rw-r--r-- | contrib/libs/nghttp2/README.rst | 8 | ||||
-rw-r--r-- | contrib/libs/nghttp2/config.h | 13 | ||||
-rw-r--r-- | contrib/libs/nghttp2/lib/includes/nghttp2/nghttp2ver.h | 4 | ||||
-rw-r--r-- | contrib/libs/nghttp2/ya.make | 4 |
4 files changed, 16 insertions, 13 deletions
diff --git a/contrib/libs/nghttp2/README.rst b/contrib/libs/nghttp2/README.rst index 5215be3a7a8..b90bea6fbcf 100644 --- a/contrib/libs/nghttp2/README.rst +++ b/contrib/libs/nghttp2/README.rst @@ -130,8 +130,8 @@ following libraries are required: <https://github.com/quictls/openssl/tree/OpenSSL_1_1_1u+quic>`_; or `BoringSSL <https://boringssl.googlesource.com/boringssl/>`_ (commit b0341041b03ea71d8371a9692aedae263fc06ee9) -* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ 0.16.x -* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ 0.12.x +* `ngtcp2 <https://github.com/ngtcp2/ngtcp2>`_ 0.17.x +* `nghttp3 <https://github.com/ngtcp2/nghttp3>`_ 0.13.x Use ``--enable-http3`` configure option to enable HTTP/3 feature for h2load and nghttpx. @@ -354,7 +354,7 @@ Build nghttp3: .. code-block:: text - $ git clone --depth 1 -b v0.12.0 https://github.com/ngtcp2/nghttp3 + $ git clone --depth 1 -b v0.13.0 https://github.com/ngtcp2/nghttp3 $ cd nghttp3 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only @@ -366,7 +366,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 -b v0.16.0 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v0.17.0 https://github.com/ngtcp2/ngtcp2 $ cd ngtcp2 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only \ diff --git a/contrib/libs/nghttp2/config.h b/contrib/libs/nghttp2/config.h index f8c8ee24a6f..05e54f66821 100644 --- a/contrib/libs/nghttp2/config.h +++ b/contrib/libs/nghttp2/config.h @@ -63,11 +63,14 @@ /* Define to 1 if you have `libbpf` library. */ /* #undef HAVE_LIBBPF */ +/* Define to 1 if you have `libev` library. */ +#define HAVE_LIBEV 1 + /* Define to 1 if you have `libngtcp2_crypto_boringssl` library. */ /* #undef HAVE_LIBNGTCP2_CRYPTO_BORINGSSL */ -/* Define to 1 if you have `libngtcp2_crypto_openssl` library. */ -/* #undef HAVE_LIBNGTCP2_CRYPTO_OPENSSL */ +/* Define to 1 if you have `libngtcp2_crypto_quictls` library. */ +/* #undef HAVE_LIBNGTCP2_CRYPTO_QUICTLS */ /* Define to 1 if you have `libsystemd` library. */ /* #undef HAVE_LIBSYSTEMD */ @@ -244,7 +247,7 @@ #define PACKAGE_NAME "nghttp2" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "nghttp2 1.54.0" +#define PACKAGE_STRING "nghttp2 1.55.0" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "nghttp2" @@ -253,7 +256,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.54.0" +#define PACKAGE_VERSION "1.55.0" /* The size of `int *', as computed by sizeof. */ #define SIZEOF_INT_P 8 @@ -358,7 +361,7 @@ /* Version number of package */ -#define VERSION "1.54.0" +#define VERSION "1.55.0" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ diff --git a/contrib/libs/nghttp2/lib/includes/nghttp2/nghttp2ver.h b/contrib/libs/nghttp2/lib/includes/nghttp2/nghttp2ver.h index b8aa7ae8f65..5dea3ffe100 100644 --- a/contrib/libs/nghttp2/lib/includes/nghttp2/nghttp2ver.h +++ b/contrib/libs/nghttp2/lib/includes/nghttp2/nghttp2ver.h @@ -29,7 +29,7 @@ * @macro * Version number of the nghttp2 library release */ -#define NGHTTP2_VERSION "1.54.0" +#define NGHTTP2_VERSION "1.55.0" /** * @macro @@ -37,6 +37,6 @@ * release. This is a 24 bit number with 8 bits for major number, 8 bits * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. */ -#define NGHTTP2_VERSION_NUM 0x013600 +#define NGHTTP2_VERSION_NUM 0x013700 #endif /* NGHTTP2VER_H */ diff --git a/contrib/libs/nghttp2/ya.make b/contrib/libs/nghttp2/ya.make index 4066271b2ec..91f1a4527ce 100644 --- a/contrib/libs/nghttp2/ya.make +++ b/contrib/libs/nghttp2/ya.make @@ -9,9 +9,9 @@ LICENSE( LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.54.0) +VERSION(1.55.0) -ORIGINAL_SOURCE(https://github.com/nghttp2/nghttp2/archive/v1.54.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/nghttp2/nghttp2/archive/v1.55.0.tar.gz) ADDINCL( GLOBAL contrib/libs/nghttp2/lib/includes |