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

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new d271e501f9 GH-47753: [C++][Parquet] Build Thrift with OpenSSL disabled 
(#47754)
d271e501f9 is described below

commit d271e501f90973bf26d25d97dd51130fcdb32a90
Author: Antoine Pitrou <[email protected]>
AuthorDate: Thu Oct 9 07:46:00 2025 +0200

    GH-47753: [C++][Parquet] Build Thrift with OpenSSL disabled (#47754)
    
    ### Rationale for this change
    
    The Thrift build chain enables OpenSSL support by default, but we don't 
need it.
    
    ### Are these changes tested?
    
    Yes, by existing CI builds.
    
    ### Are there any user-facing changes?
    
    No.
    
    * GitHub Issue: #47753
    
    Authored-by: Antoine Pitrou <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 cpp/cmake_modules/ThirdpartyToolchain.cmake | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake 
b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index 2b9b2a7fee..4e63b9d907 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -1784,6 +1784,7 @@ function(build_thrift)
     endif()
   endif()
   set(WITH_NODEJS OFF)
+  set(WITH_OPENSSL OFF)
   set(WITH_PYTHON OFF)
   set(WITH_QT5 OFF)
   set(WITH_ZLIB OFF)

Reply via email to