Hello libssh, I am trying to compile a libssh for windows and found a problem in one of the cmake scripts. Here is the patch to address it.
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index d1581cb..b839b71 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -1,4 +1,5 @@ include(CheckIncludeFile) +include(CheckIncludeFiles) include(CheckSymbolExists) include(CheckFunctionExists) include(CheckLibraryExists) As you can see, an include was missing. Regards, Julien
