macOS & Lazarus 2.0.10 Compile Problem RemObjects SDK for Delphi

Hi
There seems to be a Problem with compiling within Lazarus:

Version: Data Abstract for Delphi - 10.0.0.1481
and Data Abstract for Delphi, Server Edition - 10.0.0.1483

Error:
uROSystem.pas(319,3) Error: Identifier not found “GetLocaleFormatSettings”

function RO_GetFormatSettings: TFormatSettings;
begin
  {$WARNINGS OFF}
  {$IFDEF DELPHIXE3UP}
  Result := TFormatSettings.Create;
  {$ELSE}
  GetLocaleFormatSettings({$IFDEF MACOS}CFLocaleCopyCurrent{$ELSE}$0409{$ENDIF}, Result);
  {$ENDIF}
  {$WARNINGS ON}
end;  

Thank you in advance for a Solution.
Manfred

Hi,

are you sure that you are using .1483?
this code was in .1481 and was changed in .1483 …

Good Morning
Sorry you where right. I downloaded the new Version
Remoting SDK for Delphi - 10.0.0.1483
Now there is a Problem
uROSocketUtils.pas(33,36) Fatal: Cannot find cNetDB used by uROSocketUtils of package RemObjects_Core.

{$IFNDEF MSWINDOWS}BaseUnix, cNetDB,termio,{$ENDIF}

Hi,
odd, I have it at ..\lazarus\fpc\3.2.0\source\packages\fcl-net\src\cnetdb.pp

try to add this package to RequiredPkgs

or change name to cnetdb in uses section

BTW, this is a new installed Lazarus 2.0.10 on macOS Catalina 10.15.5

odd, I have it at …\lazarus\fpc\3.2.0\source\packages\fcl-net\src\cnetdb.pp
Yes, i did find the File.
Now i get this Error.

Thanks, logged as bugs://84672

Hi,

Logged with low priority.

try to use Indy based channels with fpc/macOS or use Delphi with native socket channels in macOS.