From f44cd264fd140e836fb39b21461179a1f31e7c4e Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Tue, 9 Jun 2026 09:16:58 +0900 Subject: [PATCH] GH-50129: [C++][Parquet] Enable `ARROW_JSON` automatically with `PARQUET_REQUIRE_ENCRYPTION` --- cpp/cmake_modules/DefineOptions.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/cmake_modules/DefineOptions.cmake b/cpp/cmake_modules/DefineOptions.cmake index fd89dfc5b09..c372f9f1989 100644 --- a/cpp/cmake_modules/DefineOptions.cmake +++ b/cpp/cmake_modules/DefineOptions.cmake @@ -593,7 +593,8 @@ takes precedence over ccache if a storage backend is configured" ON) "Build support for encryption. Fail if OpenSSL is not found" OFF DEPENDS - ARROW_FILESYSTEM) + ARROW_FILESYSTEM + ARROW_JSON) #---------------------------------------------------------------------- set_option_category("Gandiva")