From 232d545f049c5fd05933a40ba23f334ce0e696e2 Mon Sep 17 00:00:00 2001 From: Jan Marvin Garbuszus Date: Thu, 27 Mar 2025 22:23:24 +0100 Subject: [PATCH] sync with openssl 2.3.2 --- tools/winlibs.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/winlibs.R b/tools/winlibs.R index 1b4ddb0..64312d1 100644 --- a/tools/winlibs.R +++ b/tools/winlibs.R @@ -1,11 +1,11 @@ if(!file.exists("../windows/libssl/include/openssl/pem.h")){ unlink("../windows", recursive = TRUE) url <- if(grepl("aarch", R.version$platform)){ - "https://github.com/r-windows/bundles/releases/download/openssl-3.3.0/openssl-3.3.0-clang-aarch64.tar.xz" + "https://github.com/r-windows/bundles/releases/download/openssl-3.4.0/openssl-3.4.0-clang-aarch64.tar.xz" } else if(grepl("clang", Sys.getenv('R_COMPILED_BY'))){ - "https://github.com/r-windows/bundles/releases/download/openssl-3.3.0/openssl-3.3.0-clang-x86_64.tar.xz" + "https://github.com/r-windows/bundles/releases/download/openssl-3.4.0/openssl-3.4.0-clang-x86_64.tar.xz" } else if(getRversion() >= "4.2") { - "https://github.com/r-windows/bundles/releases/download/openssl-3.3.0/openssl-3.3.0-ucrt-x86_64.tar.xz" + "https://github.com/r-windows/bundles/releases/download/openssl-3.4.0/openssl-3.4.0-ucrt-x86_64.tar.xz" } else { "https://github.com/rwinlib/openssl/archive/v3.1.1.tar.gz" }