When I try to install the lazarus package it errors out at:
/home/snorkel/laz_components/sbridge/Source/ScSSHSocket.pas(86,27) Error: Identifier not found "PSockAddrIn"
This is with the sbridge version from October 1st
Thanks
Latest Sbridge and Lazarus not installing
Re: Latest Sbridge and Lazarus not installing
To solve the problem, please replace the following lines in the ScSSHSocket.pas module:
with
Code: Select all
{$IFDEF POSIX}
PSockAddrIn = Psockaddr_in;
{$ENDIF}
Code: Select all
{$IFNDEF MSWINDOWS}
PSockAddrIn = Psockaddr_in;
{$ENDIF}