gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 20/282: cmake: Improve libssh2 check on Windows


From: gnunet
Subject: [gnurl] 20/282: cmake: Improve libssh2 check on Windows
Date: Wed, 01 Apr 2020 14:28:05 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 8792a592232a8578c6217a2f8a07bc5f33c3a82f
Author: Nicolas Guillier <address@hidden>
AuthorDate: Fri Jan 10 09:57:38 2020 +0100

    cmake: Improve libssh2 check on Windows
    
    - Add "libssh2" name to FindLibSSH2 library search.
    
    On Windows systems, libSSH2 CMake installation may name the library
    "LibSSH2".
    
    Prior to this change cmake only checked for name "ssh2". On Linux that
    works fine because it will prepend the "lib", but it doesn't do that on
    Windows.
    
    Closes https://github.com/curl/curl/pull/4804
---
 CMake/FindLibSSH2.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMake/FindLibSSH2.cmake b/CMake/FindLibSSH2.cmake
index 84822dba7..0d6219425 100644
--- a/CMake/FindLibSSH2.cmake
+++ b/CMake/FindLibSSH2.cmake
@@ -12,7 +12,7 @@ endif()
 find_path(LIBSSH2_INCLUDE_DIR libssh2.h
 )
 
-find_library(LIBSSH2_LIBRARY NAMES ssh2
+find_library(LIBSSH2_LIBRARY NAMES ssh2 libssh2
 )
 
 if(LIBSSH2_INCLUDE_DIR)

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]