* fix standalone compilation

* cosmetics
This commit is contained in:
florian 2024-09-01 20:19:07 +01:00
parent 293ddffebd
commit ed07cd14b2

View File

@ -5,7 +5,7 @@ program fpmake;
uses uses
{$ifdef unix}cthreads,{$endif} fpmkunit, {$ifdef unix}cthreads,{$endif} fpmkunit,
sysutils; sysutils, classes;
{$endif ALLPACKAGES} {$endif ALLPACKAGES}
const const
@ -13,7 +13,7 @@ const
GDBMIOption: boolean = false; GDBMIOption: boolean = false;
GDBMI_Disabled: boolean = false; GDBMI_Disabled: boolean = false;
LLVM_Disabled: boolean = false; LLVM_Disabled: boolean = false;
GDBMI_DEFAULT_OSes = [aix, darwin, freebsd, haiku,linux, netbsd, openbsd, solaris, win32, win64]; GDBMI_DEFAULT_OSes = [aix, darwin, freebsd, haiku, linux, netbsd, openbsd, solaris, win32, win64];
procedure ide_check_gdb_availability(Sender: TObject); procedure ide_check_gdb_availability(Sender: TObject);
@ -78,7 +78,7 @@ var
procedure maybe_regenerate_msg_files; procedure maybe_regenerate_msg_files;
var var
cmd, msgfile, msgidxfile, msgtxtfile, fpclang : string; cmd, msgfile, msgidxfile, msgtxtfile, fpclang : string;
Opts : TstringList; Opts : TStringList;
begin begin
msgidxfile:=CompilerDir+PathDelim+'msgidx.inc'; msgidxfile:=CompilerDir+PathDelim+'msgidx.inc';
msgtxtfile:=CompilerDir+PathDelim+'msgtxt.inc'; msgtxtfile:=CompilerDir+PathDelim+'msgtxt.inc';