This is an automated email from the ASF dual-hosted git repository.
alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new 1602653a5 KUDU-3502: disable http2 support in libcurl
1602653a5 is described below
commit 1602653a50187b5fd9c9bc55944d45da4869a000
Author: zhangyifan27 <[email protected]>
AuthorDate: Thu Aug 10 15:10:09 2023 +0800
KUDU-3502: disable http2 support in libcurl
This patch adds '--without-nghttp2' option when building curl.
The http2 feature is not needed for Kudu tests or other cases,
so it make senses to remove it to avoid linker errors.
Change-Id: I4703e8f1d32a3ccd397046e0538a6305645fd70d
Reviewed-on: http://gerrit.cloudera.org:8080/20339
Reviewed-by: Marton Greber <[email protected]>
Tested-by: Alexey Serbin <[email protected]>
Reviewed-by: Alexey Serbin <[email protected]>
---
thirdparty/build-definitions.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/thirdparty/build-definitions.sh b/thirdparty/build-definitions.sh
index c5775c742..f9f57b590 100644
--- a/thirdparty/build-definitions.sh
+++ b/thirdparty/build-definitions.sh
@@ -762,6 +762,7 @@ build_curl() {
--without-libpsl \
--without-librtmp \
--without-libssh2 \
+ --without-nghttp2 \
--with-gssapi
unset KRB5CONFIG
make -j$PARALLEL $EXTRA_MAKEFLAGS install