summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordas <das>2005-05-24 04:20:05 (GMT)
committerdas <das>2005-05-24 04:20:05 (GMT)
commit1f8ced7c37e71e5e0c6563a50e8aa53ea2242fa5 (patch)
treebf72ea7d291744b7df10a64e210f2c0d4ec41b6e /ChangeLog
parentfca40523b43d3d77abecf7ffcd91efb66fdc7893 (diff)
downloadtcl-1f8ced7c37e71e5e0c6563a50e8aa53ea2242fa5.zip
tcl-1f8ced7c37e71e5e0c6563a50e8aa53ea2242fa5.tar.gz
tcl-1f8ced7c37e71e5e0c6563a50e8aa53ea2242fa5.tar.bz2
* macosx/Makefile:
* macosx/README: * macosx/Tcl-Info.plist.in (new file): * unix/Makefile.in: * unix/configure.in: * unix/tcl.m4: * unix/tclUnixInit.c: moved all Darwin framework build support from macosx/Makefile into the standard unix configure/make buildsystem, the macosx/Makefile is no longer required to build Tcl.framework (but its functionality is still available for backwards compatibility). * unix/configure: autoconf-2.13
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog27
1 files changed, 27 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9dd987f..c9f5365 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,30 @@
+2005-05-24 Daniel Steffen <das@users.sourceforge.net>
+
+ * macosx/Makefile:
+ * macosx/README:
+ * macosx/Tcl-Info.plist.in (new file):
+ * unix/Makefile.in:
+ * unix/configure.in:
+ * unix/tcl.m4:
+ * unix/tclUnixInit.c: moved all Darwin framework build support from
+ macosx/Makefile into the standard unix configure/make buildsystem, the
+ macosx/Makefile is no longer required to build Tcl.framework (but its
+ functionality is still available for backwards compatibility).
+ * unix/configure: autoconf-2.13
+
+ * generic/tclIOUtil.c (TclLoadFile):
+ * generic/tclInt.h:
+ * unix/tcl.m4:
+ * unix/tclLoadDyld.c: added support for [load]ing .bundle binaries in
+ addition to .dylib's: .bundle's can be [unload]ed (unlike .dylib's),
+ and can be [load]ed from memory, e.g. directly from VFS without
+ needing to be written out to a temporary location first. [Bug 1202209]
+ * unix/configure: autoconf-2.13
+
+ * generic/tclCmdMZ.c (Tcl_TimeObjCmd): change [time] called with a
+ count > 1 to return a string with a float value instead of a rounded
+ off integer. [Bug 1202178]
+
2005-05-20 Zoran Vasiljevic <vasiljevic@users.sourceforge.net>
* generic/tclParseExpr.c: removed unreferenced stack variable "errMsg"