Change 18406 by sky@sky-tibook on 2003/01/03 08:23:16
Under darwin 6.0+ (MacOSX 10.2) we have threadsafe
libc_r functions.
Affected files ...
... //depot/perl/hints/darwin.sh#27 edit
Differences ...
==== //depot/perl/hints/darwin.sh#27 (text) ====
Index: perl/hints/darwin.sh
--- perl/hints/darwin.sh#26~18030~ Sat Oct 19 07:10:21 2002
+++ perl/hints/darwin.sh Fri Jan 3 00:23:16 2003
@@ -147,7 +147,10 @@
#
case "$usethreads$useithreads" in
*define*)
- cat <<EOM >&4
+ case "$osvers" in
+ [12345].*) cat <<EOM >&4
+
+
*** Warning, there might be problems with your libraries with
*** regards to threading. The test ext/threads/t/libc.t is likely
@@ -155,4 +158,7 @@
EOM
;;
+ *) usereentrant='define';;
+ esac
+
esac
End of Patch.