Skip to content

Commit a721380

Browse files
committed
Windows: update to libssh 0.11.0
1 parent 043ca7d commit a721380

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: ssh
22
Type: Package
33
Title: Secure Shell (SSH) Client for R
4-
Version: 0.9.2
4+
Version: 0.9.3
55
Authors@R: person("Jeroen", "Ooms", role = c("aut", "cre"),
66
email = "[email protected]", comment = c(ORCID = "0000-0002-4035-0289"))
77
Description: Connect to a remote server over SSH to transfer files via SCP,

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.9.3
2+
- Windows: update to libssh 0.11.0
3+
14
0.9.2
25
- Fix protect warning from rchk
36

src/Makevars.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PKG_CPPFLAGS = -I$(RWINLIB)/include -DLIBSSH_STATIC
66
PKG_LIBS = \
77
-L$(RWINLIB)/$(OLDLIBDIR) \
88
-L$(RWINLIB)/lib \
9-
-lssh -lcrypto -lz -lpthread -lws2_32 -lgdi32 -lcrypt32
9+
-lssh -lcrypto -lz -lpthread -lws2_32 -lgdi32 -lcrypt32 -liphlpapi
1010

1111
all: clean winlibs
1212

tools/winlibs.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
if(!file.exists("../windows/protobuf/include/libssh/libssh.h")){
22
unlink("../windows", recursive = TRUE)
33
url <- if(grepl("aarch", R.version$platform)){
4-
"https://github.com/r-windows/bundles/releases/download/libssh-0.10.5/libssh-0.10.5-clang-aarch64.tar.xz"
4+
"https://github.com/r-windows/bundles/releases/download/libssh-0.11.0/libssh-0.11.0-clang-aarch64.tar.xz"
55
} else if(grepl("clang", Sys.getenv('R_COMPILED_BY'))){
6-
"https://github.com/r-windows/bundles/releases/download/libssh-0.10.5/libssh-0.10.5-clang-x86_64.tar.xz"
6+
"https://github.com/r-windows/bundles/releases/download/libssh-0.11.0/libssh-0.11.0-clang-x86_64.tar.xz"
77
} else if(getRversion() >= "4.2") {
8-
"https://github.com/r-windows/bundles/releases/download/libssh-0.10.5/libssh-0.10.5-ucrt-x86_64.tar.xz"
8+
"https://github.com/r-windows/bundles/releases/download/libssh-0.11.0/libssh-0.11.0-ucrt-x86_64.tar.xz"
99
} else {
1010
"https://github.com/rwinlib/libssh/archive/v0.10.5.tar.gz"
1111
}

0 commit comments

Comments
 (0)