From 18a05a6179bccffa5e05471d2e4bdba4450289de Mon Sep 17 00:00:00 2001 From: "Aryan Singh K." <70511529+aryansk@users.noreply.github.com> Date: Wed, 2 Sep 2026 14:21:13 +0530 Subject: [PATCH] GH-51131: [C++][CI] Remove obsolete google-cloud-cpp workaround --- cpp/src/arrow/CMakeLists.txt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/cpp/src/arrow/CMakeLists.txt b/cpp/src/arrow/CMakeLists.txt index d7086773a1f..9335cfe7454 100644 --- a/cpp/src/arrow/CMakeLists.txt +++ b/cpp/src/arrow/CMakeLists.txt @@ -1007,13 +1007,6 @@ if(ARROW_FILESYSTEM) "-Wno-documentation;-Wno-documentation-deprecated-sync" ) endif() - # Workaround deprecated Abseil APIs used by google-cloud-cpp on macOS - # https://github.com/googleapis/google-cloud-cpp/issues/16354 - if(APPLE) - set_property(SOURCE filesystem/gcsfs.cc filesystem/gcsfs_internal.cc - APPEND - PROPERTY COMPILE_OPTIONS "-Wno-error=deprecated-declarations") - endif() endif() if(ARROW_HDFS) list(APPEND ARROW_FILESYSTEM_SRCS filesystem/hdfs.cc)