bsd support

This commit is contained in:
marco 2003-11-02 15:41:53 +00:00
parent b8f96f52e2
commit cdbe222922

View File

@ -3,7 +3,11 @@ Unit dl;
Interface
Const
{$ifdef BSD} // dlopen is in libc on FreeBSD.
LibDL = 'c';
{$else}
LibDL = 'dl';
{$endif}
RTLD_LAZY = $001;
RTLD_NOW = $002;