summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTest.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-07 14:25:21 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-07 14:25:21 (GMT)
commitf86d726f85cde046ca923f53fe10c89966a30a4c (patch)
treeb2668ef918364195a157a42d38a1218cb8f86a20 /unix/tclUnixTest.c
parentd6e62aeb8442a71cb9b07082c3c69063030a4bc2 (diff)
parent3ad87b0a02fb6b21734ab23688d769849e52bfe8 (diff)
downloadtcl-f86d726f85cde046ca923f53fe10c89966a30a4c.zip
tcl-f86d726f85cde046ca923f53fe10c89966a30a4c.tar.gz
tcl-f86d726f85cde046ca923f53fe10c89966a30a4c.tar.bz2
Fix for [d4e464ae48]: tcl 8.5.15/8.6.1 breaks python make check on darwin
Diffstat (limited to 'unix/tclUnixTest.c')
-rw-r--r--unix/tclUnixTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixTest.c b/unix/tclUnixTest.c
index b3e07a4..21a7bad 100644
--- a/unix/tclUnixTest.c
+++ b/unix/tclUnixTest.c
@@ -566,8 +566,8 @@ TestforkObjCmd(
"Cannot fork", NULL);
return TCL_ERROR;
}
-#if !defined(HAVE_PTHREAD_ATFORK) || defined(MAC_OSX_TCL)
- /* Only needed when pthread_atfork is not present or on OSX. */
+#if !defined(HAVE_PTHREAD_ATFORK)
+ /* Only needed when pthread_atfork is not present. */
if (pid==0) {
Tcl_InitNotifier();
}