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 efaef48db0 GH-46090: [C++] Set default IPC option to enabled in Meson 
(#46114)
efaef48db0 is described below

commit efaef48db06767d40dc0c08998a8b3fd25f2cbeb
Author: William Ayd <[email protected]>
AuthorDate: Sun Apr 13 05:36:45 2025 -0400

    GH-46090: [C++] Set default IPC option to enabled in Meson (#46114)
    
    ### Rationale for this change
    
    This matches the CMake configuration
    
    ### What changes are included in this PR?
    
    The IPC option has been set to enabled by default
    
    ### Are these changes tested?
    
    Yes
    
    ### Are there any user-facing changes?
    
    No
    
    * GitHub Issue: #46090
    
    Authored-by: Will Ayd <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 cpp/meson.options | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/meson.options b/cpp/meson.options
index b6d830691e..bc6364fe51 100644
--- a/cpp/meson.options
+++ b/cpp/meson.options
@@ -47,7 +47,7 @@ option(
     'ipc',
     type: 'boolean',
     description: 'Build the Arrow IPC extensions',
-    value: false,
+    value: true,
 )
 
 option(

Reply via email to