* link libbsd for AIX, because several UNIX routines are part of its BSD

Compatibility library

git-svn-id: trunk@20788 -
This commit is contained in:
Jonas Maebe 2012-04-11 18:00:08 +00:00
parent b0e4263fee
commit 7c0469e1fd

View File

@ -19,6 +19,12 @@
{ var
Errno : cint; external clib name 'errno';}
{$if defined(aix) and not defined(FPC_IS_SYSTEM)}
{ in AIX, several UNIX routines are part of the "compatibility interface for
older Berkeley Software Distribution (BSD) system programs" }
{$linklib libbsd}
{$endif aix}
Type TGrpArr = Array [0..0] of TGid; { C style array workarounds}
pGrpArr = ^TGrpArr;
TFilDes = Array [0..1] of cInt;