From owner-freebsd-questions Thu Jan 26 23:22:31 1995 Return-Path: questions-owner Received: (from root@localhost) by freefall.cdrom.com (8.6.9/8.6.6) id XAA09244 for questions-outgoing; Thu, 26 Jan 1995 23:22:31 -0800 Received: from cats.ucsc.edu (root@cats-po-1.UCSC.EDU [128.114.129.22]) by freefall.cdrom.com (8.6.9/8.6.6) with ESMTP id XAA09236 for ; Thu, 26 Jan 1995 23:22:29 -0800 Received: from scruz.ucsc.edu by cats.ucsc.edu with SMTP id XAA01805; Thu, 26 Jan 1995 23:22:23 -0800 Received: from osprey by scruz.ucsc.edu id aa22752; 27 Jan 95 0:14 PST Received: (from markd@localhost) by Grizzly.COM (8.6.9/8.6.9) id WAA23675; Thu, 26 Jan 1995 22:25:21 -0800 Date: Thu, 26 Jan 1995 22:25:21 -0800 From: Mark Diekhans Message-Id: <199501270625.WAA23675@Grizzly.COM> To: chuckr@Glue.umd.edu CC: FreeBSD-Questions@freefall.cdrom.com In-reply-to: (message from Chuck Robey on Thu, 26 Jan 1995 22:51:38 -0500 (EST)) Subject: Re: Man Pages Sender: questions-owner@FreeBSD.org Precedence: bulk >>>>> "Chuck" == Chuck Robey writes: Chuck> Just to make sure my question stack is empty, does anyone remember Chuck> the fix to get tk/tcl working right? I have d/l'ed the new tk/tcl Chuck> (4.0xxx), but it dies in the math library. I do remember why, I Chuck> don't remember the fix....does anyone else?A This should do the trick... *** tclBasic.c.ORG Thu Jan 26 22:24:24 1995 --- tclBasic.c Thu Jan 26 22:23:35 1995 *************** *** 20,25 **** --- 20,26 ---- #ifndef TCL_GENERIC_ONLY # include "tclPort.h" #endif + #include /* * The following structure defines all of the commands in the Tcl core, *************** *** 220,225 **** --- 221,228 ---- if (firstInterp) { (void) signal(SIGPIPE, SIG_IGN); + fpsetmask(0); + fpsetround(FP_RN); firstInterp = 0; } #endif