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)
commit161caf6289109bf3b080433e64eb6597187e921a (patch)
treebcf38ee5607b90b19574e0769147c00facfc98fb /unix/tclUnixTest.c
parent6a229b9d227ed7356d5a8e0ba52b84a213ec7563 (diff)
parent4e6df409a8a45c4356447e304a5300a6324c3c09 (diff)
downloadtcl-161caf6289109bf3b080433e64eb6597187e921a.zip
tcl-161caf6289109bf3b080433e64eb6597187e921a.tar.gz
tcl-161caf6289109bf3b080433e64eb6597187e921a.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();
}