diff options
author | 2009-04-17 20:22:50 +0000 | |
---|---|---|
committer | 2009-04-17 20:22:50 +0000 | |
commit | f2d0706aadd7bcfe3c4323327332c8653796ec35 (patch) | |
tree | 33f3808e0822aea640b320944011e08944e3d126 /dev-tcltk/tix/files | |
parent | Migrate to gen-2 java eclasses, bug #161426. (diff) | |
download | gentoo-2-f2d0706aadd7bcfe3c4323327332c8653796ec35.tar.gz gentoo-2-f2d0706aadd7bcfe3c4323327332c8653796ec35.tar.bz2 gentoo-2-f2d0706aadd7bcfe3c4323327332c8653796ec35.zip |
add tcl85 patch. fixes bug #250354
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/tix/files')
-rw-r--r-- | dev-tcltk/tix/files/tix-8.4.2-tcl85.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-tcltk/tix/files/tix-8.4.2-tcl85.patch b/dev-tcltk/tix/files/tix-8.4.2-tcl85.patch new file mode 100644 index 000000000000..aaf995e0b6e2 --- /dev/null +++ b/dev-tcltk/tix/files/tix-8.4.2-tcl85.patch @@ -0,0 +1,26 @@ +Source: Mandriva - posted on http://bugs.gentoo.org/show_bug.cgi?id=250354 +Index: generic/tixPort.h +=================================================================== +--- generic/tixPort.h ++++ generic/tixPort.h 2007-05-13 19:33:49.000000000 +0200 +@@ -21,6 +21,7 @@ + #ifndef _TCL + #include "tcl.h" + #endif ++#include "tclInt.h" + + #ifndef _TK + #include "tk.h" +Index: generic/tixWidget.c +=================================================================== +--- generic/tixWidget.c ++++ generic/tixWidget.c 2007-05-13 19:38:07.000000000 +0200 +@@ -228,7 +228,7 @@ + Tcl_SetVar2(interp, "errorCode", NULL, oldErrorCode, + TCL_GLOBAL_ONLY); + } +- iPtr->flags |= ERR_IN_PROGRESS; ++ iPtr->flags |= INTERP_TRACE_IN_PROGRESS; + } + if (rootCmd) { + ckfree(rootCmd); |