mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-01 20:10:18 +02:00
* Darwin does not have a lib_r, libc itself is already reentrant
This commit is contained in:
parent
e1fc7227d9
commit
6ff7c9634a
@ -29,7 +29,11 @@ interface
|
||||
{$linklib pthread}
|
||||
{$else}
|
||||
// Link reentrant libc with pthreads
|
||||
{$ifndef darwin}
|
||||
{$linklib c_r}
|
||||
{$else darwin}
|
||||
{$linklib c}
|
||||
{$endif darwin}
|
||||
{$endif}
|
||||
{$endif}
|
||||
|
||||
@ -416,7 +420,10 @@ initialization
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.5 2003-12-16 09:43:04 daniel
|
||||
Revision 1.6 2004-01-07 17:40:56 jonas
|
||||
* Darwin does not have a lib_r, libc itself is already reentrant
|
||||
|
||||
Revision 1.5 2003/12/16 09:43:04 daniel
|
||||
* Use of 0 instead of nil fixed
|
||||
|
||||
Revision 1.4 2003/11/29 17:34:14 michael
|
||||
|
Loading…
Reference in New Issue
Block a user