Windows x64, x32 compiler (Lazarus 0.9.31 recent SVN, FPC fixes_2_6 recent SVN)
Synapse SVN (recent)
I downloaded the Synapse demo programs from the stable distribution and converted the echo Delphi demo.
Directories:
synapse => contains sources such as asn1util.pas
synapse\demo=>demo projects
synapse\demo\echo => the one I'm working with
The converter complained it couldn't find some units; I specified the synapse directory and it seemed to work.
On compiling I got an error in sswin32.inc: could not find LoadLibrary.
So I added:
implementation
{$IFDEF FPC}
uses dynlibs;
{$ENDIF}
Did I do the right thing? Should I have compiled & added the laz_synapse.lpk package in Lazarus?
The code does run and provides an echo server on port 8008.
If I did do the right thing, I suppose I'll have to send this as a patch to Synapse....
Thanks.