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

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


The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
     new 637830a8fb [chore](third-party) Don't link keyutils to krb5 explicitly 
(#19632) (#19680)
637830a8fb is described below

commit 637830a8fbdc43f28d1b19810b0b22d1a9f149a2
Author: Adonis Ling <[email protected]>
AuthorDate: Tue May 16 10:42:13 2023 +0800

    [chore](third-party) Don't link keyutils to krb5 explicitly (#19632) 
(#19680)
    
    We may link system-wide keyutils to krb5 when building krb5 which may 
introduce an extra dependency to the codebase.
---
 thirdparty/build-thirdparty.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh
index 0128449d73..fb040c4311 100755
--- a/thirdparty/build-thirdparty.sh
+++ b/thirdparty/build-thirdparty.sh
@@ -1362,7 +1362,8 @@ build_krb5() {
     fi
 
     CFLAGS="-fcommon -fPIC -I${TP_INSTALL_DIR}/include" 
LDFLAGS="-L${TP_INSTALL_DIR}/lib" \
-        ../configure --prefix="${TP_INSTALL_DIR}" --disable-shared 
--enable-static ${with_crypto_impl:+${with_crypto_impl}}
+        ../configure --prefix="${TP_INSTALL_DIR}" --disable-shared 
--enable-static \
+        --without-keyutils ${with_crypto_impl:+${with_crypto_impl}}
 
     make -j "${PARALLEL}"
     make install


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to