Browse Source

* threading switch

peter 23 years ago
parent
commit
94b4f206e0
2 changed files with 18 additions and 2 deletions
  1. 9 1
      fcl/linux/classes.pp
  2. 9 1
      fcl/win32/classes.pp

+ 9 - 1
fcl/linux/classes.pp

@@ -16,6 +16,11 @@
 
 {$mode objfpc}
 
+{ Require threading }
+{$ifndef ver1_0}
+  {$threading on}
+{$endif ver1_0}
+
 { determine the type of the resource/form file }
 {$define Win16Res}
 
@@ -55,7 +60,10 @@ finalization
 end.
 {
   $Log$
-  Revision 1.5  2002-09-07 15:15:27  peter
+  Revision 1.6  2002-10-14 19:45:54  peter
+    * threading switch
+
+  Revision 1.5  2002/09/07 15:15:27  peter
     * old logs removed and tabs fixed
 
 }

+ 9 - 1
fcl/win32/classes.pp

@@ -16,6 +16,11 @@
 
 {$mode objfpc}
 
+{ Require threading }
+{$ifndef ver1_0}
+  {$threading on}
+{$endif ver1_0}
+
 { determine the type of the resource/form file }
 {$define Win16Res}
 
@@ -46,7 +51,10 @@ finalization
 end.
 {
   $Log$
-  Revision 1.3  2002-09-07 15:15:29  peter
+  Revision 1.4  2002-10-14 19:46:13  peter
+    * threading switch
+
+  Revision 1.3  2002/09/07 15:15:29  peter
     * old logs removed and tabs fixed
 
 }