mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-03 08:50:27 +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}
|
{$linklib pthread}
|
||||||
{$else}
|
{$else}
|
||||||
// Link reentrant libc with pthreads
|
// Link reentrant libc with pthreads
|
||||||
|
{$ifndef darwin}
|
||||||
{$linklib c_r}
|
{$linklib c_r}
|
||||||
|
{$else darwin}
|
||||||
|
{$linklib c}
|
||||||
|
{$endif darwin}
|
||||||
{$endif}
|
{$endif}
|
||||||
{$endif}
|
{$endif}
|
||||||
|
|
||||||
@ -416,7 +420,10 @@ initialization
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$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
|
* Use of 0 instead of nil fixed
|
||||||
|
|
||||||
Revision 1.4 2003/11/29 17:34:14 michael
|
Revision 1.4 2003/11/29 17:34:14 michael
|
||||||
|
Loading…
Reference in New Issue
Block a user