Update nghttp2 1.60->1.61
They seem to have gotten rid of the nghttp2_static target, so go back to
relying on the "normal" target.
Change-Id: Ic44d9ffe5fa2d88f38c018756738197371b0dc89
Signed-off-by: Ed Tanous <ed@tanous.net>
diff --git a/meson.build b/meson.build
index ee8a91f..cabb65f 100644
--- a/meson.build
+++ b/meson.build
@@ -289,9 +289,14 @@
if not nghttp2.found()
cmake = import('cmake')
opt_var = cmake.subproject_options()
- opt_var.add_cmake_defines({'ENABLE_LIB_ONLY': true, 'ENABLE_STATIC_LIB': true})
+ opt_var.add_cmake_defines(
+ {
+ 'ENABLE_LIB_ONLY': true,
+ 'ENABLE_STATIC_LIB': true,
+ },
+ )
nghttp2_ex = cmake.subproject('nghttp2', options: opt_var)
- nghttp2 = nghttp2_ex.dependency('nghttp2_static')
+ nghttp2 = nghttp2_ex.dependency('nghttp2')
endif
bmcweb_dependencies += nghttp2