summaryrefslogtreecommitdiff
path: root/packages/pthreads
diff options
context:
space:
mode:
authorivost <ivost@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-09-14 18:54:55 +0000
committerivost <ivost@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-09-14 18:54:55 +0000
commitf02a5078536dfd8e080e58a688e046bbc94725f6 (patch)
treeeaa50004a3a6a4b851d4cdf4acc03e4e8ff2ed24 /packages/pthreads
parent26b1c6dd6b558a0577fad9d2bc3bf18a84cf7b6c (diff)
downloadfpc-f02a5078536dfd8e080e58a688e046bbc94725f6.tar.gz
* added unixtype unit in addition to baseunix unit (currently baseunix contains all types of unixtype)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11782 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/pthreads')
-rw-r--r--packages/pthreads/src/pthreads.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/pthreads/src/pthreads.pp b/packages/pthreads/src/pthreads.pp
index 008bbd1258..11c107af3b 100644
--- a/packages/pthreads/src/pthreads.pp
+++ b/packages/pthreads/src/pthreads.pp
@@ -25,16 +25,16 @@ uses initc,BaseUnix, unixtype;
{$i pthrbsd.inc}
{$else}
{$ifdef linux}
- uses initc,unixtype;
+ uses initc, ctypes, unixtype;
{$i pthrlinux.inc}
{$else}
{$ifdef sunos}
- uses initc,unixtype;
+ uses initc, ctypes, unixtype;
{$i pthrsnos.inc}
{$else}
{$ifdef beos}
- uses initc, baseunix, unixtype;
+ uses initc, ctypes, baseunix, unixtype;
{$i pthrbeos.inc}
{$else}
{$error operating system not detected}