Skip to content

Commit 97c9bfc

Browse files
authored
GH-47213: [R] Require CMake 3.26 or later (#47217)
### Rationale for this change We may need to build bundled Apache Thrift. It requires CMake 3.26 or later. ### What changes are included in this PR? Require CMake 3.26 or later. ### Are these changes tested? Yes. ### Are there any user-facing changes? Yes. * GitHub Issue: #47213 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 8ef974c commit 97c9bfc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

r/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ BugReports: https://github.com/apache/arrow/issues
2929
Encoding: UTF-8
3030
Language: en-US
3131
SystemRequirements: C++17; for AWS S3 support on Linux, libcurl and openssl (optional);
32-
cmake >= 3.25 (build-time only, and only for full source build)
32+
cmake >= 3.26 (build-time only, and only for full source build)
3333
Biarch: true
3434
Imports:
3535
assertthat,

r/tools/nixlibs.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ build_libarrow <- function(src_dir, dst_dir) {
641641
invisible(status)
642642
}
643643

644-
ensure_cmake <- function(cmake_minimum_required = "3.25") {
644+
ensure_cmake <- function(cmake_minimum_required = "3.26") {
645645
cmake <- find_cmake(version_required = cmake_minimum_required)
646646

647647
if (is.null(cmake)) {

0 commit comments

Comments
 (0)