diff options
author | dgp <dgp@users.sourceforge.net> | 2013-03-26 14:01:05 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-03-26 14:01:05 (GMT) |
commit | 57b17e48d54e1c117a6c09b2047e3429312a3406 (patch) | |
tree | 7ebed7c7e9959df202e589c095648653b210d272 | |
parent | beed4073b4e2b633b5fbd0831f52fbbcad523f6d (diff) | |
download | tk-57b17e48d54e1c117a6c09b2047e3429312a3406.zip tk-57b17e48d54e1c117a6c09b2047e3429312a3406.tar.gz tk-57b17e48d54e1c117a6c09b2047e3429312a3406.tar.bz2 |
Tag for release.
-rw-r--r-- | ChangeLog | 21 | ||||
-rw-r--r-- | changes | 2 | ||||
-rw-r--r-- | tests/window.test | 6 | ||||
-rw-r--r-- | unix/Makefile.in | 9 |
4 files changed, 25 insertions, 13 deletions
@@ -1,3 +1,20 @@ +2013-03-26 Don Porter <dgp@users.sourceforge.net> + + *** 8.4.20 TAGGED FOR RELEASE *** + + * README: Bump version number to 8.4.20 + * generic/tk.h: + * unix/configure.in: + * unix/tk.spec: + * win/configure.in: + + * unix/configure: autoconf-2.13 + * win/configure: + + * changes: updates for 8.4.20 release. + + * tests/window.test: [Bug 1715716] Constrain window-2.9 no threads. + 2013-03-13 Jan Nijtmans <nijtmans@users.sf.net> * unix/tcl.m4: Patch by Andrew Shadura, providing better support for @@ -13,8 +30,8 @@ 2012-12-03 François Vogel <fvogelnew1@free.fr> - * generic/tkTextIndex.c: [Bug 3588824]: bug in image index handling - * tests/textIndex.test: for weird image names + * generic/tkTextIndex.c: [Bug 3588824]: bug in image index handling + * tests/textIndex.test: for weird image names 2012-11-13 Jan Nijtmans <nijtmans@users.sf.net> @@ -6237,4 +6237,4 @@ coords of a polygon (rogers,spjuth) 2013-03-13 (enhancement) better build support for Debian arch (shadura) ---- Released 8.4.20, 2013 --- See ChangeLog for details --- +--- Released 8.4.20, June 1, 2013 --- See ChangeLog for details --- diff --git a/tests/window.test b/tests/window.test index 8628c7a..f9b114a 100644 --- a/tests/window.test +++ b/tests/window.test @@ -11,9 +11,13 @@ namespace import -force tcltest::testsDirectory namespace import -force tcltest::interpreter namespace import -force tcltest::makeFile namespace import -force tcltest::removeFile +namespace import -force tcltest::testConstraint configure -testdir [file join [pwd] [file dirname [info script]]] configure -loadfile [file join [testsDirectory] constraints.tcl] tcltest::loadTestedCommands +testConstraint unthreaded [expr { + (![info exists tcl_platform(threaded)] || !$tcl_platform(threaded)) +}] update @@ -148,7 +152,7 @@ test window-2.8 {Tk_DestroyWindow, cleanup half dead windows at exit} \ } {0 {}} test window-2.9 {Tk_DestroyWindow, Destroy bindings evaluated after exit} \ - unixOrWin { + {unixOrWin unthreaded} { set script [makeFile { toplevel .t1 toplevel .t2 diff --git a/unix/Makefile.in b/unix/Makefile.in index 53579f9..e31d7e6 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -1398,15 +1398,6 @@ dist: cp -p $(TOP_DIR)/win/rc/*.{rc,cur,ico,bmp} $(DISTDIR)/win/rc $(TCL_EXE) $(TOOL_DIR)/eolFix.tcl -crlf $(DISTDIR)/win/rc/*.rc $(TCL_EXE) $(TOOL_DIR)/eolFix.tcl -crlf $(DISTDIR)/win/wish.exe.manifest.in - mkdir $(DISTDIR)/mac - cp -p $(TOP_DIR)/mac/tkMacProjects.sea.hqx $(DISTDIR)/mac - cp -p $(TOP_DIR)/mac/*.c $(TOP_DIR)/mac/*.h $(TOP_DIR)/mac/*.r \ - $(DISTDIR)/mac - cp -p $(TOP_DIR)/mac/README $(DISTDIR)/mac - cp -p $(TOP_DIR)/license.terms $(DISTDIR)/mac - cp -p $(TOP_DIR)/mac/*.pch $(DISTDIR)/mac - cp -p $(TOP_DIR)/mac/*.doc $(DISTDIR)/mac - cp -p $(TOP_DIR)/mac/*.tcl $(DISTDIR)/mac mkdir $(DISTDIR)/macosx cp -p $(MAC_OSX_DIR)/Makefile $(MAC_OSX_DIR)/README \ $(MAC_OSX_DIR)/Wish.icns $(MAC_OSX_DIR)/*.c \ |