Which FPC did you use? The one with "sudo apt-get install fpc" or did you download the one that's required found in the FAQ?
I install Lazarus and FPC manually. I download fpc_3.0.2-170225_amd64.deb, fpc-src_3.0.2-170225_amd64.deb and lazarus-project_1.6.4-0_amd64.deb. I'm quite sure this is done correct. And it is the newest stable versions.
I'm not aware of any FAQ telling me to do otherwise.
However both PascalCoin and Pascal Lite compile and run perfect when I correct the two functions in UTime.pas.
This is how it should look:
{$IFDEF FPC}
begin
// Result := UniversalTimeToLocal(d);
Result := LocalTimeToUniversal(d);
end;
{$ELSE}
-----------
Function UnivDateTime2LocalDateTime(d:TDateTime):TDateTime;
{$IFDEF FPC}
begin
Result := UniversalTimeToLocal(d);
// Result := LocalTimeToUniversal(d);
end;
{$ELSE}
Then everything works
Good to hear that it works now. Please give feedback on how fast syncing from start. Many thanks.