Latest Sbridge and Lazarus not installing

Discussion of open issues, suggestions and bugs regarding network security and data protection solution - SecureBridge
Post Reply
snorkel
Posts: 384
Joined: Tue 08 Aug 2006 15:10
Location: Milwaukee WI USA

Latest Sbridge and Lazarus not installing

Post by snorkel » Thu 06 Nov 2014 20:42

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

ViktorV
Devart Team
Posts: 3168
Joined: Wed 30 Jul 2014 07:16

Re: Latest Sbridge and Lazarus not installing

Post by ViktorV » Fri 07 Nov 2014 11:14

To solve the problem, please replace the following lines in the ScSSHSocket.pas module:

Code: Select all

{$IFDEF POSIX}
  PSockAddrIn = Psockaddr_in;
{$ENDIF}
with

Code: Select all

{$IFNDEF MSWINDOWS}
  PSockAddrIn = Psockaddr_in;
{$ENDIF}

Post Reply