This is an automated email from the ASF dual-hosted git repository.
thisisnic 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 f9301c0ba8 GH-47191: [R] Turn GCS back on by default on MacOS source
builds (#47192)
f9301c0ba8 is described below
commit f9301c0ba8a7ed1b0b63275cfdd4c44c26b04675
Author: Nic Crane <[email protected]>
AuthorDate: Fri Jul 25 15:45:19 2025 +0100
GH-47191: [R] Turn GCS back on by default on MacOS source builds (#47192)
### Rationale for this change
GCS wasn't on by default on MacOS source builds
### What changes are included in this PR?
Turn it on
### Are these changes tested?
Nah
### Are there any user-facing changes?
Nope
* GitHub Issue: #47191
Authored-by: Nic Crane <[email protected]>
Signed-off-by: Nic Crane <[email protected]>
---
r/tools/nixlibs.R | 1 +
1 file changed, 1 insertion(+)
diff --git a/r/tools/nixlibs.R b/r/tools/nixlibs.R
index 06fe4a18bc..0af50ff935 100644
--- a/r/tools/nixlibs.R
+++ b/r/tools/nixlibs.R
@@ -580,6 +580,7 @@ build_libarrow <- function(src_dir, dst_dir) {
env_var_list <- c(
env_var_list,
ARROW_S3 = Sys.getenv("ARROW_S3", "ON"),
+ ARROW_GCS = Sys.getenv("ARROW_GCS", "ON"),
ARROW_WITH_ZSTD = Sys.getenv("ARROW_WITH_ZSTD", "ON")
)
}