Skip to content

Commit

Permalink
Windows: update to libcurl 8.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Oct 21, 2024
1 parent e52d8e9 commit d79ca79
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- The MacOS binary packages now require at least libcurl 7.80 which is included
with all current MacOS versions (13+) as well as recent patch releases for
legacy MacOS versions (11.7 and 12.7).
- Windows: update to libcurl 8.8.0

5.2.3
- Remove some CMD check verbosity per new CRAN rules
Expand Down
6 changes: 3 additions & 3 deletions tools/winlibs.R
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
if(!file.exists("../windows/libcurl/include/curl/curl.h")){
unlink("../windows", recursive = TRUE)
url <- if(grepl("aarch", R.version$platform)){
"https://github.com/r-windows/bundles/releases/download/curl-8.3.0/curl-8.3.0-clang-aarch64.tar.xz"
"https://github.com/r-windows/bundles/releases/download/curl-8.8.0/curl-8.8.0-clang-aarch64.tar.xz"
} else if(grepl("clang", Sys.getenv('R_COMPILED_BY'))){
"https://github.com/r-windows/bundles/releases/download/curl-8.3.0/curl-8.3.0-clang-x86_64.tar.xz"
"https://github.com/r-windows/bundles/releases/download/curl-8.8.0/curl-8.8.0-clang-x86_64.tar.xz"
} else if(getRversion() >= "4.2") {
"https://github.com/r-windows/bundles/releases/download/curl-8.3.0/curl-8.3.0-ucrt-x86_64.tar.xz"
"https://github.com/r-windows/bundles/releases/download/curl-8.8.0/curl-8.8.0-ucrt-x86_64.tar.xz"
} else {
"https://github.com/rwinlib/libcurl/archive/v7.84.0.tar.gz"
}
Expand Down

0 comments on commit d79ca79

Please sign in to comment.