From ed07cd14b26cf82c09f481b7e0d9495f58b2443c Mon Sep 17 00:00:00 2001 From: florian Date: Sun, 1 Sep 2024 20:19:07 +0100 Subject: [PATCH] * fix standalone compilation * cosmetics --- packages/ide/fpmake.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ide/fpmake.pp b/packages/ide/fpmake.pp index 1945245116..c98fa107f7 100644 --- a/packages/ide/fpmake.pp +++ b/packages/ide/fpmake.pp @@ -5,7 +5,7 @@ program fpmake; uses {$ifdef unix}cthreads,{$endif} fpmkunit, - sysutils; + sysutils, classes; {$endif ALLPACKAGES} const @@ -13,7 +13,7 @@ const GDBMIOption: boolean = false; GDBMI_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); @@ -78,7 +78,7 @@ var procedure maybe_regenerate_msg_files; var cmd, msgfile, msgidxfile, msgtxtfile, fpclang : string; - Opts : TstringList; + Opts : TStringList; begin msgidxfile:=CompilerDir+PathDelim+'msgidx.inc'; msgtxtfile:=CompilerDir+PathDelim+'msgtxt.inc';