You are not logged in.
Pages: 1
Delphi 12.1
file mormot.crypt.openssl
line 897 and line 966: E2250 There is no overloaded version of 'AlgoName' that can be called with these arguments
Offline
Delphi is somewhat not consistent with FPC.
Or the other way round, I can't say.
Please try
https://github.com/synopse/mORMot2/commit/c91fe2d4
Offline
mormot.net.client, line 2232
wraNegotiate:
fOnAuthorize := OnAuthorizeSspi; // as AuthorizeSspiUser()
Gives error in compiling if DOMAINRESTAUTH is not set
Offline
Offline
mormot.core.os.security line 1947 and 2056
[dcc32 Error] mormot.core.os.security.pas(1947): E2010 Incompatible types: 'PAnsiChar' and 'PUtf8Char'
Offline
This has been fixed during the day.
The trunk should be stable every night, during its continuous integration tests on multiple platforms.
https://blog.synopse.info/?post/2023/07 … the-mORMot
But during the day, the commits are not meant to be stable, and compile on all platforms.
So it is not needed to report such issues if they appear during Europe daylight time.
Offline
RTL concat for arrays has compilation problems with mormot's concat in mormot.core.base
Offline
On which compiler?
Can you describe the problem?
Can you state the error message displayed?
I can't reproduce the problem here.
I tried with Delphi up to 12.2 with no compiler complain when building the mORMot2Tests project.
Offline
On which compiler?
Can you describe the problem?
Can you state the error message displayed?I can't reproduce the problem here.
I tried with Delphi up to 12.2 with no compiler complain when building the mORMot2Tests project.
Delphi 12.2 and try the following:
procedure TForm3.Button1Click(Sender: TObject);
var a,b,c:array of integer;
begin
setlength(a,2);
setlength(b,3);
c:=concat(a,b);
end;
if mormot.core.base is uses list, it does not compile.
I had to change all to: c:=system.concat(a,b);
Offline
Makes sense.
I have renamed the function to Join([]) to avoid any confusion.
https://github.com/synopse/mORMot2/commit/9a65958a7
Offline
Pages: 1