Browse Source

* Add cthreads

Michaël Van Canneyt 2 years ago
parent
commit
27fc3c95f8
1 changed files with 6 additions and 2 deletions
  1. 6 2
      utils/rmwait/fpmake.pp

+ 6 - 2
utils/rmwait/fpmake.pp

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