You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2023/01/11 03:08:32 UTC

[doris] branch branch-1.2-lts updated (de520a68c9 -> b012878d29)

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

morningman pushed a change to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git


    from de520a68c9 [deps](hdfs) update libhdfs3 to v2.3.5 to support KMS (#15770)
     new a23c71be1a [chore](thirdparty) fix bug that GSSAPI of libgsasl is disabled (#15753)
     new b012878d29 [chore](thirdparty) Fix the md5sum of the package brpc-1.2.0.tar.gz (#15789)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 thirdparty/build-thirdparty.sh | 4 +++-
 thirdparty/vars.sh             | 8 ++++----
 2 files changed, 7 insertions(+), 5 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[doris] 01/02: [chore](thirdparty) fix bug that GSSAPI of libgsasl is disabled (#15753)

Posted by mo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git

commit a23c71be1ab7ab3b6277bd93cf454a4f7600c692
Author: Mingyu Chen <mo...@163.com>
AuthorDate: Wed Jan 11 09:07:46 2023 +0800

    [chore](thirdparty) fix bug that GSSAPI of libgsasl is disabled (#15753)
    
    In #15037, I modified the build script of libgsasl to enable GSSAPI,
    but it is still wrong, because the PATH does not include the `thirdparty/installed/bin`,
    so when building libgsasl, it will report error:
    `WARNING: MIT Kerberos krb5-config not found, disabling GSSAPI`
    
    but `krb5-config` is in `thirdparty/installed/bin`.
    
    Without GSSAPI, the libhdfs3 can not access hdfs with kerberos authentication.
---
 thirdparty/build-thirdparty.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh
index 641a870350..3ce02c0248 100755
--- a/thirdparty/build-thirdparty.sh
+++ b/thirdparty/build-thirdparty.sh
@@ -1333,7 +1333,9 @@ build_gsasl() {
         cflags='-Wno-implicit-function-declaration'
     fi
 
-    CFLAGS="${cflags} -I${TP_INCLUDE_DIR}" ../configure --prefix="${TP_INSTALL_DIR}" --with-gssapi-impl=mit --enable-shared=no --with-pic --with-libidn-prefix="${TP_INSTALL_DIR}"
+    KRB5_CONFIG="${TP_INSTALL_DIR}/bin/krb5-config" \
+        CFLAGS="${cflags} -I${TP_INCLUDE_DIR}" \
+        ../configure --prefix="${TP_INSTALL_DIR}" --with-gssapi-impl=mit --enable-shared=no --with-pic --with-libidn-prefix="${TP_INSTALL_DIR}"
 
     make -j "${PARALLEL}"
     make install


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[doris] 02/02: [chore](thirdparty) Fix the md5sum of the package brpc-1.2.0.tar.gz (#15789)

Posted by mo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git

commit b012878d298531ca9957a7426e1d36473e9260e0
Author: Adonis Ling <ad...@gmail.com>
AuthorDate: Wed Jan 11 11:05:21 2023 +0800

    [chore](thirdparty) Fix the md5sum of the package brpc-1.2.0.tar.gz (#15789)
    
    Apache brpc has graduated from incubator recently. The MD5 of the package we download from https://github.com/apache/incubator-brpc/archive/refs/tags/1.2.0.tar.gz changed and the mismatch MD5 makes the build scripts fail.
---
 thirdparty/vars.sh | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/thirdparty/vars.sh b/thirdparty/vars.sh
index 7a7e1b11af..3e169b5c74 100644
--- a/thirdparty/vars.sh
+++ b/thirdparty/vars.sh
@@ -198,10 +198,10 @@ LEVELDB_SOURCE=leveldb-1.23
 LEVELDB_MD5SUM="afbde776fb8760312009963f09a586c7"
 
 # brpc
-BRPC_DOWNLOAD="https://github.com/apache/incubator-brpc/archive/refs/tags/1.2.0.tar.gz"
-BRPC_NAME="incubator-brpc-1.2.0.tar.gz"
-BRPC_SOURCE="incubator-brpc-1.2.0"
-BRPC_MD5SUM="556c024d5f770dbd2336ca4541ae8c96"
+BRPC_DOWNLOAD="https://github.com/apache/brpc/archive/refs/tags/1.2.0.tar.gz"
+BRPC_NAME="brpc-1.2.0.tar.gz"
+BRPC_SOURCE="brpc-1.2.0"
+BRPC_MD5SUM="c3c148e672dc660ad48d8bd973f95dcf"
 
 # rocksdb
 ROCKSDB_DOWNLOAD="https://github.com/facebook/rocksdb/archive/v5.14.2.tar.gz"


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org