This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch branch-1.17.x
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/branch-1.17.x by this push:
     new 8a073d06d KUDU-3502: disable http2 support in libcurl
8a073d06d is described below

commit 8a073d06d425a0c9124e7d9626224e195a6d8ae0
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]>
    (cherry picked from commit 1602653a50187b5fd9c9bc55944d45da4869a000)
    Reviewed-on: http://gerrit.cloudera.org:8080/20341
    Reviewed-by: Yifan Zhang <[email protected]>
    Tested-by: Kudu Jenkins
---
 thirdparty/build-definitions.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/thirdparty/build-definitions.sh b/thirdparty/build-definitions.sh
index f78926b89..b1fa65330 100644
--- a/thirdparty/build-definitions.sh
+++ b/thirdparty/build-definitions.sh
@@ -759,6 +759,7 @@ build_curl() {
     --without-libpsl \
     --without-librtmp \
     --without-libssh2 \
+    --without-nghttp2 \
     --with-gssapi
   unset KRB5CONFIG
   make -j$PARALLEL $EXTRA_MAKEFLAGS install

Reply via email to