[Pkg-tcltk-commits] r703 - in tk8.4/trunk/debian: . patches

sgolovan-guest at alioth.debian.org sgolovan-guest at alioth.debian.org
Tue Jul 15 16:43:07 UTC 2008


Author: sgolovan-guest
Date: 2008-07-15 16:43:06 +0000 (Tue, 15 Jul 2008)
New Revision: 703

Added:
   tk8.4/trunk/debian/patches/tk-lastevent.diff
Modified:
   tk8.4/trunk/debian/changelog
   tk8.4/trunk/debian/patches/series
Log:
[tk8.4]
  * Fixed clean target to work with debhelper 7.0 (made dh_clean the last
    command, so debhelper logs are removed now).
  * Added a patch by upstream to mitigate a design bug in Tk event system
    (Tk events break if built with x11proto-core 7.0.13).


Modified: tk8.4/trunk/debian/changelog
===================================================================
--- tk8.4/trunk/debian/changelog	2008-07-15 16:31:24 UTC (rev 702)
+++ tk8.4/trunk/debian/changelog	2008-07-15 16:43:06 UTC (rev 703)
@@ -1,9 +1,11 @@
-tk8.4 (8.4.19-2) UNRELEASED; urgency=low
+tk8.4 (8.4.19-2) unstable; urgency=low
 
   * Fixed clean target to work with debhelper 7.0 (made dh_clean the last
     command, so debhelper logs are removed now).
+  * Added a patch by upstream to mitigate a design bug in Tk event system
+    (Tk events break if built with x11proto-core 7.0.13).
 
- -- Sergei Golovan <sgolovan at debian.org>  Thu, 01 May 2008 12:31:32 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Tue, 15 Jul 2008 20:36:28 +0400
 
 tk8.4 (8.4.19-1) unstable; urgency=low
 

Modified: tk8.4/trunk/debian/patches/series
===================================================================
--- tk8.4/trunk/debian/patches/series	2008-07-15 16:31:24 UTC (rev 702)
+++ tk8.4/trunk/debian/patches/series	2008-07-15 16:43:06 UTC (rev 703)
@@ -1,4 +1,5 @@
 scalable-fonts.diff
+tk-lastevent.diff
 tklibrary.diff
 tkinc.diff
 rpath.diff

Added: tk8.4/trunk/debian/patches/tk-lastevent.diff
===================================================================
--- tk8.4/trunk/debian/patches/tk-lastevent.diff	                        (rev 0)
+++ tk8.4/trunk/debian/patches/tk-lastevent.diff	2008-07-15 16:43:06 UTC (rev 703)
@@ -0,0 +1,29 @@
+Date: Sat Jul 12 09:40:30 PDT 2008
+Files: generic/tk.h
+Bugid: 2010422
+
+--- tk8.4-8.4.19.orig/generic/tk.h
++++ tk8.4-8.4.19/generic/tk.h
+@@ -635,17 +635,15 @@
+  *
+  *---------------------------------------------------------------------------
+  */
+-#define VirtualEvent	    (LASTEvent)
+-#define ActivateNotify	    (LASTEvent + 1)
+-#define DeactivateNotify    (LASTEvent + 2)
+-#define MouseWheelEvent     (LASTEvent + 3)
+-#define TK_LASTEVENT	    (LASTEvent + 4)
++#define VirtualEvent	    (MappingNotify + 1)
++#define ActivateNotify	    (MappingNotify + 2)
++#define DeactivateNotify    (MappingNotify + 3)
++#define MouseWheelEvent     (MappingNotify + 4)
++#define TK_LASTEVENT	    (MappingNotify + 5)
+ 
+ #define MouseWheelMask	    (1L << 28)
+-
+ #define ActivateMask	    (1L << 29)
+ #define VirtualEventMask    (1L << 30)
+-#define TK_LASTEVENT	    (LASTEvent + 4)
+ 
+ 
+ /*




More information about the Pkg-tcltk-commits mailing list