Re: Re: Building libssh with GSSAPI support on Windows?

2021-08-03 Thread Skalák , Zdeněk
On Tue, Aug 3, 2021 at 12:26 PM Kerrison, Adam wrote: > I meant to follow up on this. I have made it build on Windows 😊 > > > > I needed to extend the FindGSSAPI.cmake file as I said, the final addition > looks like this: > > > > if (WIN32) > > if (EXISTS "C:\Program Files\\MIT\\Kerberos") >

RE: Re: Building libssh with GSSAPI support on Windows?

2021-08-03 Thread Kerrison, Adam
I meant to follow up on this. I have made it build on Windows 😊 I needed to extend the FindGSSAPI.cmake file as I said, the final addition looks like this: if (WIN32) if (EXISTS "C:\Program Files\\MIT\\Kerberos") set(GSSAPI_FLAVOR_MIT TRUE) set(GSSAPI_ROOT_DIR "C:\\Program Fi

Re: Building libssh with GSSAPI support on Windows?

2021-08-03 Thread Aris Adamantiadis
Hi Adam, I'm afraid I don't have a good answer. Afaik no one tried to compile GSSAPI support on windows before. The problems you have seem to come from the windows headers themselves. Maybe try to remove a few network-related headers in gssapi.c until it doesn't complain about redefinitions.

Re: ssh connection via a proxy

2021-08-03 Thread Jeremy Fix
On 03/08/2021 09:44, Andreas Schneider wrote: > On Tuesday, August 3, 2021 9:16:15 AM CEST Jeremy Fix wrote: >> On 03/08/2021 08:52, Andreas Schneider wrote: >>> On Monday, August 2, 2021 11:28:10 PM CEST Jeremy Fix wrote: Hello, >>> Hi, >>> I would like to use libssh for connecting to a

Re: ssh connection via a proxy

2021-08-03 Thread Andreas Schneider
On Tuesday, August 3, 2021 9:16:15 AM CEST Jeremy Fix wrote: > On 03/08/2021 08:52, Andreas Schneider wrote: > > On Monday, August 2, 2021 11:28:10 PM CEST Jeremy Fix wrote: > >> Hello, > > > > Hi, > > > >> I would like to use libssh for connecting to a remote host via a > >> gateway, executing a

Re: ssh connection via a proxy

2021-08-03 Thread Jeremy Fix
On 03/08/2021 08:52, Andreas Schneider wrote: > On Monday, August 2, 2021 11:28:10 PM CEST Jeremy Fix wrote: >> Hello, > Hi, > >> I would like to use libssh for connecting to a remote host via a >> gateway, executing a command on the remote host and parsing its standard >> outputs/errors; So the pi