* Re: [PATCH] prep for Tcl/Tk 8.3 upgrade [not found] <20010514170524.164d5bf3.irox@evilpeople.com> @ 2001-05-15 12:25 ` Fernando Nasser 2001-05-16 6:08 ` Andrew Cagney 0 siblings, 1 reply; 4+ messages in thread From: Fernando Nasser @ 2001-05-15 12:25 UTC (permalink / raw) To: Ian Roxborough Cc: insight, gdb, Michael Snyder, Eli Zaretskii, Elena Zannoni, Jim Blandy, Chris Faylor, Kevin Buettner Ian Roxborough wrote: > > Hi, > > I've been working on getting Insight working with Tcl/Tk 8.3 > and here is my first patch on the matter. > > More to follow (but I'm trying to make as few changes as possible). > > This patch addresses minor C API changes in Tcl. > Whatever you say Ian. We must ask Andrew to add you to the write after approval list (at least for gdbtk files) or this will be a nightmare (one of us will have to check in all of your patches, one by one). Andrew, can we add Ian (one of the Source Navigator maintainers) to our list of write after approval? Thanks, Fernando > ChangeLog: > > 2001-05-14 Ian Roxborough <irox@redhat.com> > > * generic/gdbtk-hooks.c (x_event): Minor > API changes with Tcl version update. > Use the Tcl_ObjGetVar2 call with Tcl8.3. > (gdbtk_trace_find): Use Tcl_GlobalEvalObj > call with Tcl8.3. > > Index: generic/gdbtk-hooks.c > =================================================================== > RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-hooks.c,v > retrieving revision 1.13 > diff -u -r1.13 gdbtk-hooks.c > --- gdbtk-hooks.c 2001/05/10 22:34:54 1.13 > +++ gdbtk-hooks.c 2001/05/14 23:49:42 > @@ -462,7 +462,7 @@ > int val; > if (varname == NULL) > { > -#if TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION < 1 > +#if TCL_MAJOR_VERSION == 8 && (TCL_MINOR_VERSION < 1 || TCL_MINOR_VERSION > 2) > Tcl_Obj *varnamestrobj = Tcl_NewStringObj ("download_cancel_ok", -1); > varname = Tcl_ObjGetVar2 (gdbtk_interp, varnamestrobj, NULL, TCL_GLOBAL_ONLY); > #else > @@ -733,7 +733,7 @@ > Tcl_NewStringObj ("gdbtk_tcl_trace_find_hook", -1)); > Tcl_ListObjAppendElement (gdbtk_interp, cmdObj, Tcl_NewStringObj (arg, -1)); > Tcl_ListObjAppendElement (gdbtk_interp, cmdObj, Tcl_NewIntObj (from_tty)); > -#if TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION < 1 > +#if TCL_MAJOR_VERSION == 8 && (TCL_MINOR_VERSION < 1 || TCL_MINOR_VERSION > 2) > if (Tcl_GlobalEvalObj (gdbtk_interp, cmdObj) != TCL_OK) > report_error (); > #else > > -- > What would Jenna Bush do? -- Fernando Nasser Red Hat Canada Ltd. E-Mail: fnasser@redhat.com 2323 Yonge Street, Suite #300 Toronto, Ontario M4P 2C9 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] prep for Tcl/Tk 8.3 upgrade 2001-05-15 12:25 ` [PATCH] prep for Tcl/Tk 8.3 upgrade Fernando Nasser @ 2001-05-16 6:08 ` Andrew Cagney 2001-05-16 7:14 ` Keith Seitz 0 siblings, 1 reply; 4+ messages in thread From: Andrew Cagney @ 2001-05-16 6:08 UTC (permalink / raw) To: Fernando Nasser Cc: Ian Roxborough, insight, gdb, Michael Snyder, Eli Zaretskii, Elena Zannoni, Jim Blandy, Chris Faylor, Kevin Buettner > We must ask Andrew to add you to the write after approval list (at least > for gdbtk files) or this will be a nightmare (one of us will have to > check in all of your patches, one by one). > > Andrew, can we add Ian (one of the Source Navigator maintainers) to our > list of write after approval? To be added to the GDB maintainers file, Ian would need to post a reasonable patch for GDB to the GDB list. There was a proposal to create an Insight maintainers file co-ordinated by the Insight maintainers. Right now things are a little wierd. I'm not responsible for Insight but that isn't clear since Insight is listed in the GDB MAINTAINERS file. Andrew ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] prep for Tcl/Tk 8.3 upgrade 2001-05-16 6:08 ` Andrew Cagney @ 2001-05-16 7:14 ` Keith Seitz 2001-05-16 15:55 ` Fernando Nasser 0 siblings, 1 reply; 4+ messages in thread From: Keith Seitz @ 2001-05-16 7:14 UTC (permalink / raw) To: Andrew Cagney Cc: Fernando Nasser, Ian Roxborough, insight, gdb, Michael Snyder, Eli Zaretskii, Elena Zannoni, Jim Blandy, Chris Faylor, Kevin Buettner On Wed, 16 May 2001, Andrew Cagney wrote: > There was a proposal to create an Insight maintainers file co-ordinated > by the Insight maintainers. Right now things are a little wierd. I'm > not responsible for Insight but that isn't clear since Insight is listed > in the GDB MAINTAINERS file. Yes, I was working on this at one time (and forgot all about it). If it is agreeable to everyone else, I will remove most of the Insight/gdbtk references in gdb/MAINTAINERS and move them to gdb/gdbtk/MAINTAINERS. The idea was to largely keep the same policies. Everyone with write authority in gdb would automatically have write-after-approval in gdbtk. Let me know. Keith ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] prep for Tcl/Tk 8.3 upgrade 2001-05-16 7:14 ` Keith Seitz @ 2001-05-16 15:55 ` Fernando Nasser 0 siblings, 0 replies; 4+ messages in thread From: Fernando Nasser @ 2001-05-16 15:55 UTC (permalink / raw) To: Keith Seitz Cc: Andrew Cagney, Fernando Nasser, Ian Roxborough, insight, gdb, Michael Snyder, Eli Zaretskii, Elena Zannoni, Jim Blandy, Chris Faylor, Kevin Buettner Keith Seitz wrote: > > On Wed, 16 May 2001, Andrew Cagney wrote: > > > There was a proposal to create an Insight maintainers file co-ordinated > > by the Insight maintainers. Right now things are a little wierd. I'm > > not responsible for Insight but that isn't clear since Insight is listed > > in the GDB MAINTAINERS file. > > Yes, I was working on this at one time (and forgot all about it). If it is > agreeable to everyone else, I will remove most of the Insight/gdbtk > references in gdb/MAINTAINERS and move them to gdb/gdbtk/MAINTAINERS. > > The idea was to largely keep the same policies. Everyone with write > authority in gdb would automatically have write-after-approval in gdbtk. > > Let me know. > Keith I agree. -- Fernando Nasser Red Hat Canada Ltd. ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2001-05-16 15:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20010514170524.164d5bf3.irox@evilpeople.com>
2001-05-15 12:25 ` [PATCH] prep for Tcl/Tk 8.3 upgrade Fernando Nasser
2001-05-16 6:08 ` Andrew Cagney
2001-05-16 7:14 ` Keith Seitz
2001-05-16 15:55 ` Fernando Nasser
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox