diff options
author | dsainty <dsainty@pkgsrc.org> | 2008-08-06 04:09:12 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2008-08-06 04:09:12 +0000 |
commit | 50796f82dafb40ec34f39380eb1a05f6f49bb16f (patch) | |
tree | 9c3515c1554c4e045b15403815e7103df37140da /x11/tk/Makefile | |
parent | 530d49cf8f97f46a6772b186245e4f8f0191d8e8 (diff) | |
download | pkgsrc-50796f82dafb40ec34f39380eb1a05f6f49bb16f.tar.gz |
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.
Diffstat (limited to 'x11/tk/Makefile')
-rw-r--r-- | x11/tk/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/x11/tk/Makefile b/x11/tk/Makefile index ebe3b982f88..027a2014316 100644 --- a/x11/tk/Makefile +++ b/x11/tk/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.61 2007/09/25 10:03:54 hira Exp $ +# $NetBSD: Makefile,v 1.62 2008/08/06 04:09:12 dsainty Exp $ DISTNAME= tk${TK_VERSION}-src PKGNAME= tk-${TK_VERSION} +PKGREVISION= 1 CATEGORIES= x11 lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} |