diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-10-07 14:23:00 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2013-10-07 14:23:00 (GMT) |
| commit | 2f7e092347edc7b03377a0e1005a3414817143ae (patch) | |
| tree | bcf38ee5607b90b19574e0769147c00facfc98fb /unix/tclUnixTest.c | |
| parent | 77c7f6a442206d4969a94b43369a8e53262fafcd (diff) | |
| parent | 4c56f341dee9a99fc29826fe7b1af090ff239357 (diff) | |
| download | tcl-2f7e092347edc7b03377a0e1005a3414817143ae.zip tcl-2f7e092347edc7b03377a0e1005a3414817143ae.tar.gz tcl-2f7e092347edc7b03377a0e1005a3414817143ae.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.c | 4 |
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(); } |
