summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTest.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-07 14:23:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-10-07 14:23:00 (GMT)
commit3ad87b0a02fb6b21734ab23688d769849e52bfe8 (patch)
treebcf38ee5607b90b19574e0769147c00facfc98fb /unix/tclUnixTest.c
parent7413854f340252d775aaa567031b23c54ea3917b (diff)
parentc83af8f8d46cbf0e5e98a6cc10c01ddbf5d979ab (diff)
downloadtcl-3ad87b0a02fb6b21734ab23688d769849e52bfe8.zip
tcl-3ad87b0a02fb6b21734ab23688d769849e52bfe8.tar.gz
tcl-3ad87b0a02fb6b21734ab23688d769849e52bfe8.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 d2b729d..bb16f3b 100644
--- a/unix/tclUnixTest.c
+++ b/unix/tclUnixTest.c
@@ -574,8 +574,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();
}