head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.4 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.2 pkgsrc-2012Q4-base:1.5 pkgsrc-2012Q2:1.4.0.34 pkgsrc-2012Q2-base:1.4 pkgsrc-2012Q1:1.4.0.32 pkgsrc-2012Q1-base:1.4 pkgsrc-2011Q4:1.4.0.30 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q3:1.4.0.28 pkgsrc-2011Q3-base:1.4 pkgsrc-2011Q2:1.4.0.26 pkgsrc-2011Q2-base:1.4 pkgsrc-2011Q1:1.4.0.24 pkgsrc-2011Q1-base:1.4 pkgsrc-2010Q4:1.4.0.22 pkgsrc-2010Q4-base:1.4 pkgsrc-2010Q3:1.4.0.20 pkgsrc-2010Q3-base:1.4 pkgsrc-2010Q2:1.4.0.18 pkgsrc-2010Q2-base:1.4 pkgsrc-2010Q1:1.4.0.16 pkgsrc-2010Q1-base:1.4 pkgsrc-2009Q4:1.4.0.14 pkgsrc-2009Q4-base:1.4 pkgsrc-2009Q3:1.4.0.12 pkgsrc-2009Q3-base:1.4 pkgsrc-2009Q2:1.4.0.10 pkgsrc-2009Q2-base:1.4 pkgsrc-2009Q1:1.4.0.8 pkgsrc-2009Q1-base:1.4 pkgsrc-2008Q4:1.4.0.6 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.4 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.2 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.3.0.18 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.16 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.14 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.12 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.10 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.8 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.6 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.4 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.2 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.2.0.4 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.2 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.1.0.2 pkgsrc-2005Q3-base:1.1; locks; strict; comment @# @; 1.5 date 2012.08.21.21.32.34; author marino; state dead; branches; next 1.4; 1.4 date 2008.08.06.04.09.12; author dsainty; state Exp; branches; next 1.3; 1.3 date 2006.04.27.08.18.09; author adam; state dead; branches 1.3.18.1; next 1.2; 1.2 date 2005.11.03.23.09.24; author rillig; state Exp; branches; next 1.1; 1.1 date 2005.09.21.14.49.08; author joerg; state Exp; branches; next ; 1.3.18.1 date 2008.09.10.10.47.31; author tron; state Exp; branches; next ; desc @@ 1.5 log @x11/tk: Upgrade from version 8.4.18 to 8.5.12 Highlights of Tk 8.5 * New modern theming engine: New and complementary widgets that make use of platform-specific theming on Mac OS X and Windows to better fit in with those environments, and feature an improved look and feel under X11. * New widgets: Part of the themed widget set, Tk now has core notebook, combobox, treeview and progressbar widgets. * text widget: Smooth scrolling, widget peering, and improved procedures for counting and replacing text. * Font rendering: Now uses anti-aliased text under X11, and a more modern text engine (ATSUI) on Mac OS X. * Additional improvements: Window transparency, new fullscreen option for windows, enhancements to specific widgets and window layout, and more. There is of course much, much more. See [8.5 Changes](http://wiki.tcl.tk/10630) on the wiki for a complete list of new features. @ text @$NetBSD: patch-ae,v 1.4 2008/08/06 04:09:12 dsainty Exp $ Tk uses X event numbers to index this array, as well as adding a few of its own, starting with "VirtualEvent" (Which is correctly set to LASTEvent, defined in include/X11/X.h). In xproto-7.0.13, a new event "GenericEvent" was added - making the array broken for all of Tk's internal events. A cleaner fix, but a much bigger patch, is listed in the Tk bug tracker: http://sourceforge.net/tracker/index.php?func=detail&aid=2010422&group_id=12997&atid=112997 --- generic/tkBind.c.orig 2008-08-06 15:19:07.000000000 +1200 +++ generic/tkBind.c 2008-08-06 15:21:30.000000000 +1200 @@@@ -586,6 +586,9 @@@@ /* ColormapNotify */ COLORMAP, /* ClientMessage */ 0, /* MappingNotify */ 0, +#ifdef GenericEvent + /* GenericEvent */ 0, /* Introduced in xproto-7.0.13 */ +#endif /* VirtualEvent */ VIRTUAL, /* Activate */ ACTIVATE, /* Deactivate */ ACTIVATE, @ 1.4 log @Tk uses X event numbers to index an "event" array, as well as adding a few of its own, starting with "VirtualEvent" (Which is correctly set to LASTEvent, defined in include/X11/X.h). In xproto-7.0.13, a new event "GenericEvent" was added - making the defined array broken for all of Tk's internal events. The easy fix is to just add in the missing event into the hard-coded array. This patch was reported here: http://bugs.gentoo.org/show_bug.cgi?id=225999 A cleaner fix, but a much bigger patch, is listed in the Tk bug tracker. I'm punting that Tk will have been updated with the fix before X.h grows another event. http://sourceforge.net/tracker/index.php?func=detail&aid=2010422&group_id=12997&atid=112997 Bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Changes 8.4.13: * Win NT/XP: unicode console support taken back out. * ${prefix}/share addition to ::tcl_pkgPath undone. * Warning message for packages with incorrect index scripts silenced. * Correct syntax error in configure script (bash 3.1 exposes it). * Tk incompatibilities with SCIM resolved. * Improved [file writable] support of Windows conventions. * Tcl_GetIndexFromObj() support for exact matching of empty key. * Tk Portuguese localization support (pt.msg). * Tk more robust when X server does not recognize color name "Black". * Tk_PhotoPutBlock() performance improvement. * [lsearch -start $pastEnd] no longer finds match at end of list. * Correct [expr abs($LONG_MIN)] result. * Correct [string range] failures on some strings containing \x00. * TCL_EVAL_GLOBAL and [uplevel 0] agreement when traces or [unknown] active. * Corrections to context of auto-loading the target of an interp alias. * Corrected some interference between enter and enterstep traces. * Correct [$img configure -data] failure to change X display. * Tk_GetBitmapFromData() thread safety. * Crashes in [grid] for some invalid index arguments. * Crash when all content of a [text] is elided. * Crash in [$text edit undo/redo]. * Crash in animated GIF display with variable frame size. * Crash related to pipe usage in thread-enabled Tcl on Windows. * Crash when [$text dump -command] changes contents while dumping. * Crash reading utf-8 when multibyte char spans multiple buffers at EOF. * Several finalization crashes corrected. @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.2 2005/11/03 23:09:24 rillig Exp $ d3 21 a23 16 --- unix/tkUnixPort.h.orig 2005-07-30 21:02:48.000000000 +0000 +++ unix/tkUnixPort.h @@@@ -119,12 +119,7 @@@@ #endif #define MASK_SIZE howmany(FD_SETSIZE, NFDBITS) -/* - * Not all systems declare the errno variable in errno.h. so this - * file does it explicitly. - */ - -extern int errno; +#include /* * Define "NBBY" (number of bits per byte) if it's not already defined. @ 1.3.18.1 log @Pullup - ticket #2523 - requested by is tk: make this package work with modular X.org Revisions pulled up: x11/tk/Makefile 1.62 x11/tk/distinfo 1.34 x11/tk/patches/patch-ae 1.4 --- Module Name: pkgsrc Committed By: dsainty Date: Wed Aug 6 04:09:12 UTC 2008 Modified Files: pkgsrc/x11/tk: Makefile distinfo Added Files: pkgsrc/x11/tk/patches: patch-ae Log Message: Tk uses X event numbers to index an "event" array, as well as adding a few of its own, starting with "VirtualEvent" (Which is correctly set to LASTEvent, defined in include/X11/X.h). In xproto-7.0.13, a new event "GenericEvent" was added - making the defined array broken for all of Tk's internal events. The easy fix is to just add in the missing event into the hard-coded array. This patch was reported here: http://bugs.gentoo.org/show_bug.cgi?id=225999 A cleaner fix, but a much bigger patch, is listed in the Tk bug tracker. I'm punting that Tk will have been updated with the fix before X.h grows another event. http://sourceforge.net/tracker/index.php?func=detail&aid=2010422&group_id=12997&atid=112997 Bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ d3 16 a18 21 Tk uses X event numbers to index this array, as well as adding a few of its own, starting with "VirtualEvent" (Which is correctly set to LASTEvent, defined in include/X11/X.h). In xproto-7.0.13, a new event "GenericEvent" was added - making the array broken for all of Tk's internal events. A cleaner fix, but a much bigger patch, is listed in the Tk bug tracker: http://sourceforge.net/tracker/index.php?func=detail&aid=2010422&group_id=12997&atid=112997 --- generic/tkBind.c.orig 2008-08-06 15:19:07.000000000 +1200 +++ generic/tkBind.c 2008-08-06 15:21:30.000000000 +1200 @@@@ -586,6 +586,9 @@@@ /* ColormapNotify */ COLORMAP, /* ClientMessage */ 0, /* MappingNotify */ 0, +#ifdef GenericEvent + /* GenericEvent */ 0, /* Introduced in xproto-7.0.13 */ +#endif /* VirtualEvent */ VIRTUAL, /* Activate */ ACTIVATE, /* Deactivate */ ACTIVATE, @ 1.2 log @Fixed wrong use of WRKSRC. @ text @d1 1 a1 1 $NetBSD: patch-ae,v 1.1 2005/09/21 14:49:08 joerg Exp $ @ 1.1 log @Ensure that errno really comes from errno.h and only define it as extern, if it's not a macro. Teach configure about DragonFly. OKed by maintainer. @ text @d1 1 a1 1 $NetBSD$ d3 2 a4 2 --- tkUnixPort.h.orig 2005-07-30 21:02:48.000000000 +0000 +++ tkUnixPort.h @