* Add cthreads

This commit is contained in:
Michaël Van Canneyt 2023-07-16 13:58:48 +02:00 committed by Pierre Muller
parent d1700abe16
commit d4eb1410fc

View File

@ -2,7 +2,11 @@
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
program fpmake; program fpmake;
uses fpmkunit, sysutils; uses
{$ifdef unix}
cthreads,
{$endif}
fpmkunit, sysutils;
{$endif ALLPACKAGES} {$endif ALLPACKAGES}
procedure add_fpmc(const ADirectory: string); procedure add_fpmc(const ADirectory: string);
@ -69,7 +73,7 @@ end;
{$ifndef ALLPACKAGES} {$ifndef ALLPACKAGES}
begin begin
add_fpmc; add_fpmc('');
Installer.Run; Installer.Run;
end. end.
{$endif ALLPACKAGES} {$endif ALLPACKAGES}