summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-01-26 03:37:22 (GMT)
committerhobbs <hobbs>2000-01-26 03:37:22 (GMT)
commit985b9d320f2f4ba7c7b7914af60f5ef0be724288 (patch)
treef787213bc13f0bd0ac84e84e974cc6d9e5a3c7b3 /ChangeLog
parent1476eeb702927712af2eaa72d07545e475ce8335 (diff)
downloadtcl-985b9d320f2f4ba7c7b7914af60f5ef0be724288.zip
tcl-985b9d320f2f4ba7c7b7914af60f5ef0be724288.tar.gz
tcl-985b9d320f2f4ba7c7b7914af60f5ef0be724288.tar.bz2
see logs
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog25
1 files changed, 23 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d83c4b..cc384cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,24 @@
+2000-01-25 Jeff Hobbs <hobbs@scriptics.com>
+
+ * unix/tcl.m4: modified EXTRA_CFLAGS to add -DHAVE_TZSET for
+ OSF1-V* and ULTRIX-4.* when not using gcc. Also added higher min
+ stack size for OSF1-V* when building with threads. [Bug: 4063]
+
+ * generic/tclClock.c (FormatClock): inlined resultPtr, as it
+ conflicted with var creation for HAVE_TZSET #def [Bug: 4063]
+
+ * generic/tclCmdIL.c (Tcl_LsortObjCmd): fixed potential leak
+ when calling lsort -command with bad command [Bug: 4067]
+
+ * generic/tclFileName.c (Tcl_JoinPath): added support for special
+ QNX node id prefixes in pathnames [Bug: 4053]
+
+ * doc/ListObj.3: clarified Tcl_ListObjGetElements docs [Bug: 4080]
+
+ * doc/glob.n: clarified Mac path separator determination docs.
+
+ * win/makefile.vc: added some support for building helpfile on Windows
+
2000-01-23 Jeff Hobbs <hobbs@scriptics.com>
* library/init.tcl (auto_execok): added 'start' to list of
@@ -7,8 +28,8 @@
systems (UTS) require sys/types.h to be included first [Bug: 4031]
* unix/tclUnixChan.c (CreateSocketAddress): changed comparison
- with -1 to 0xFFFFFFFFFFFFFFF, which is the pedantic way to say -1
- for both 32 bit and 64 bit systems. [Bug: 3878]
+ with -1 to 0xFFFFFFFF, to ensure 32 bit comparison even on 64 bit
+ systems. [Bug: 3878]
* generic/tclFileName.c: improved guessing of path separator
for the Mac. (Darley)