Registriert seit: 25. Mai 2006
27 Beiträge
Delphi 11 Alexandria
|
AW: Delphi 12 ist offiziell da!!!
12. Nov 2023, 00:10
Bei mir hat bei der offline Installation "...\23.0\source\ rtl\linux\Linuxapi.Curl.pas" gefehlt.
Wieso benötigst du denn die Source für das compile?
Update: Das fehlt gar nicht! Die Unit heißt jetzt lediglich System.Curl.
Danke für die Aufklärung, eine Datei von TMS FNC Core will die Datei noch in alter Benennung haben.
EDIT: Fix..
Code:
{$IF COMPILERVERSION >= 36}
,System.Curl
{$ELSE}
,Linuxapi.Curl
{$ENDIF}
Geändert von Delami (12. Nov 2023 um 00:18 Uhr)
|