public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux 6.[12])
       [not found] <orvh1erwsi.fsf@zecarneiro.lsd.ic.unicamp.br>
@ 2000-04-19 16:40 ` Andrew Cagney
  2000-04-19 17:01   ` Syd Polk
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Cagney @ 2000-04-19 16:40 UTC (permalink / raw)
  To: Alexandre Oliva, Insight (GDB GUI)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1905 bytes --]

Ok? (the original was sent to gdb-patches)

Alexandre Oliva wrote:
> I had to install this patch in order to get the GDB tree to build on
> GNU/Linux/sparc.  Ok to install?  Release branch?
> 
>   ------------------------------------------------------------------------
> Index: tcl/ChangeLog
> from  Alexandre Oliva  <aoliva@cygnus.com>
> 
>         * generic/tclPosixStr.c (Tcl_SignalId, Tcl_SignalMsg): Do not
>         issue SIGPWR case if it's the same as SIGLOST.
> 
> Index: tcl/generic/tclPosixStr.c
> ===================================================================
> RCS file: /cvs/cvsfiles/devo/tcl/generic/tclPosixStr.c,v
> retrieving revision 1.10
> diff -u -r1.10 tclPosixStr.c
> --- tcl/generic/tclPosixStr.c   1999/05/18 23:10:04     1.10
> +++ tcl/generic/tclPosixStr.c   2000/04/12 19:50:05
> @@ -986,7 +986,7 @@
>  #ifdef SIGPROF
>         case SIGPROF: return "SIGPROF";
>  #endif
> -#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ))
> +#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ)) && (!defined(SIGLOST) || (SIGPWR != SIGLOST))
>         case SIGPWR: return "SIGPWR";
>  #endif
>  #ifdef SIGQUIT
> @@ -1118,7 +1118,7 @@
>  #ifdef SIGPROF
>         case SIGPROF: return "profiling alarm";
>  #endif
> -#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ))
> +#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ)) && (!defined(SIGLOST) || (SIGPWR != SIGLOST))
>         case SIGPWR: return "power-fail restart";
>  #endif
>  #ifdef SIGQUIT
> 
>   ------------------------------------------------------------------------
> 
> --
> Alexandre Oliva    Enjoy Guaraná, see http://www.ic.unicamp.br/~oliva/
> Cygnus Solutions, a Red Hat company        aoliva@{redhat, cygnus}.com
> Free Software Developer and Evangelist    CS PhD student at IC-Unicamp
> oliva@{lsd.ic.unicamp.br, gnu.org}   Write to mailing lists, not to me

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux 6.[12])
  2000-04-19 16:40 ` Patch for tcl to build on GNU/Linux/sparc (RedHat Linux 6.[12]) Andrew Cagney
@ 2000-04-19 17:01   ` Syd Polk
  2000-04-19 17:05     ` James Ingham
  2000-04-20  0:05     ` Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12]) Andrew Cagney
  0 siblings, 2 replies; 7+ messages in thread
From: Syd Polk @ 2000-04-19 17:01 UTC (permalink / raw)
  To: Andrew Cagney, Alexandre Oliva, Insight (GDB GUI)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2409 bytes --]

At 09:39 AM 4/20/00 +1000, Andrew Cagney wrote:
>Ok? (the original was sent to gdb-patches)

Hmm. This is also the code that is in the Tcl generic distribution. I would 
love to see this submitted as a patch to Scriptics and see what they say 
first. I hate CYGNUS LOCAL changes, and this is definitely one.

So go ahead and accept it on the condition that it is also submitted to 
Scriptics.

>Alexandre Oliva wrote:
> > I had to install this patch in order to get the GDB tree to build on
> > GNU/Linux/sparc.  Ok to install?  Release branch?
> >
> >   ------------------------------------------------------------------------
> > Index: tcl/ChangeLog
> > from  Alexandre Oliva  <aoliva@cygnus.com>
> >
> >         * generic/tclPosixStr.c (Tcl_SignalId, Tcl_SignalMsg): Do not
> >         issue SIGPWR case if it's the same as SIGLOST.
> >
> > Index: tcl/generic/tclPosixStr.c
> > ===================================================================
> > RCS file: /cvs/cvsfiles/devo/tcl/generic/tclPosixStr.c,v
> > retrieving revision 1.10
> > diff -u -r1.10 tclPosixStr.c
> > --- tcl/generic/tclPosixStr.c   1999/05/18 23:10:04     1.10
> > +++ tcl/generic/tclPosixStr.c   2000/04/12 19:50:05
> > @@ -986,7 +986,7 @@
> >  #ifdef SIGPROF
> >         case SIGPROF: return "SIGPROF";
> >  #endif
> > -#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ))
> > +#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ)) && 
> (!defined(SIGLOST) || (SIGPWR != SIGLOST))
> >         case SIGPWR: return "SIGPWR";
> >  #endif
> >  #ifdef SIGQUIT
> > @@ -1118,7 +1118,7 @@
> >  #ifdef SIGPROF
> >         case SIGPROF: return "profiling alarm";
> >  #endif
> > -#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ))
> > +#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ)) && 
> (!defined(SIGLOST) || (SIGPWR != SIGLOST))
> >         case SIGPWR: return "power-fail restart";
> >  #endif
> >  #ifdef SIGQUIT
> >
> >   ------------------------------------------------------------------------
> >
> > --
> > Alexandre Oliva    Enjoy Guaraná, see http://www.ic.unicamp.br/~oliva/
> > Cygnus Solutions, a Red Hat company        aoliva@{redhat, cygnus}.com
> > Free Software Developer and Evangelist    CS PhD student at IC-Unicamp
> > oliva@{lsd.ic.unicamp.br, gnu.org}   Write to mailing lists, not to me

Syd Polk
Engineering Manager
Cygnus Solutions,a Red Hat company


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux 6.[12])
  2000-04-19 17:01   ` Syd Polk
@ 2000-04-19 17:05     ` James Ingham
  2000-04-20  0:05     ` Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12]) Andrew Cagney
  1 sibling, 0 replies; 7+ messages in thread
From: James Ingham @ 2000-04-19 17:05 UTC (permalink / raw)
  To: Syd Polk; +Cc: Andrew Cagney, Alexandre Oliva, Insight (GDB GUI)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 2803 bytes --]

Syd,

I was just composing a post to the same effect when I saw yours.  We
HAVE to get gdbtk to where it can run on a straight Tcl from
Scriptics, and any steps away from this goal are a bad idea.

Jim

 > At 09:39 AM 4/20/00 +1000, Andrew Cagney wrote:
 > >Ok? (the original was sent to gdb-patches)
 > 
 > Hmm. This is also the code that is in the Tcl generic distribution. I would 
 > love to see this submitted as a patch to Scriptics and see what they say 
 > first. I hate CYGNUS LOCAL changes, and this is definitely one.
 > 
 > So go ahead and accept it on the condition that it is also submitted to 
 > Scriptics.
 > 
 > >Alexandre Oliva wrote:
 > > > I had to install this patch in order to get the GDB tree to build on
 > > > GNU/Linux/sparc.  Ok to install?  Release branch?
 > > >
 > > >   ------------------------------------------------------------------------
 > > > Index: tcl/ChangeLog
 > > > from  Alexandre Oliva  <aoliva@cygnus.com>
 > > >
 > > >         * generic/tclPosixStr.c (Tcl_SignalId, Tcl_SignalMsg): Do not
 > > >         issue SIGPWR case if it's the same as SIGLOST.
 > > >
 > > > Index: tcl/generic/tclPosixStr.c
 > > > ===================================================================
 > > > RCS file: /cvs/cvsfiles/devo/tcl/generic/tclPosixStr.c,v
 > > > retrieving revision 1.10
 > > > diff -u -r1.10 tclPosixStr.c
 > > > --- tcl/generic/tclPosixStr.c   1999/05/18 23:10:04     1.10
 > > > +++ tcl/generic/tclPosixStr.c   2000/04/12 19:50:05
 > > > @@ -986,7 +986,7 @@
 > > >  #ifdef SIGPROF
 > > >         case SIGPROF: return "SIGPROF";
 > > >  #endif
 > > > -#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ))
 > > > +#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ)) && 
 > > (!defined(SIGLOST) || (SIGPWR != SIGLOST))
 > > >         case SIGPWR: return "SIGPWR";
 > > >  #endif
 > > >  #ifdef SIGQUIT
 > > > @@ -1118,7 +1118,7 @@
 > > >  #ifdef SIGPROF
 > > >         case SIGPROF: return "profiling alarm";
 > > >  #endif
 > > > -#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ))
 > > > +#if defined(SIGPWR) && (!defined(SIGXFSZ) || (SIGPWR != SIGXFSZ)) && 
 > > (!defined(SIGLOST) || (SIGPWR != SIGLOST))
 > > >         case SIGPWR: return "power-fail restart";
 > > >  #endif
 > > >  #ifdef SIGQUIT
 > > >
 > > >   ------------------------------------------------------------------------
 > > >
 > > > --
 > > > Alexandre Oliva    Enjoy Guaraná, see http://www.ic.unicamp.br/~oliva/
 > > > Cygnus Solutions, a Red Hat company        aoliva@{redhat, cygnus}.com
 > > > Free Software Developer and Evangelist    CS PhD student at IC-Unicamp
 > > > oliva@{lsd.ic.unicamp.br, gnu.org}   Write to mailing lists, not to me
 > 
 > Syd Polk
 > Engineering Manager
 > Cygnus Solutions,a Red Hat company
 > 
 > 
 > 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12])
  2000-04-19 17:01   ` Syd Polk
  2000-04-19 17:05     ` James Ingham
@ 2000-04-20  0:05     ` Andrew Cagney
  2000-04-20  0:17       ` Mo DeJong
  1 sibling, 1 reply; 7+ messages in thread
From: Andrew Cagney @ 2000-04-20  0:05 UTC (permalink / raw)
  To: Syd Polk; +Cc: Alexandre Oliva, Insight (GDB GUI)

Syd Polk wrote:
> 
> At 09:39 AM 4/20/00 +1000, Andrew Cagney wrote:
> >Ok? (the original was sent to gdb-patches)
> 
> Hmm. This is also the code that is in the Tcl generic distribution. I would
> love to see this submitted as a patch to Scriptics and see what they say
> first. I hate CYGNUS LOCAL changes, and this is definitely one.
> 
> So go ahead and accept it on the condition that it is also submitted to
> Scriptics.

I've applied this to all relevant branches.  Alexandre, can you please
send it to Scriptics.

	Andrew

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12])
  2000-04-20  0:05     ` Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12]) Andrew Cagney
@ 2000-04-20  0:17       ` Mo DeJong
  2000-04-20  0:34         ` Andrew Cagney
  0 siblings, 1 reply; 7+ messages in thread
From: Mo DeJong @ 2000-04-20  0:17 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: Syd Polk, Alexandre Oliva, Insight (GDB GUI)

If nobody else wants to do it, you can send me the patch and I will
put it into the scriptics bug database.

Mo Dejong
Red Hat Inc.

On Thu, 20 Apr 2000, Andrew Cagney wrote:

> Syd Polk wrote:
> > 
> > At 09:39 AM 4/20/00 +1000, Andrew Cagney wrote:
> > >Ok? (the original was sent to gdb-patches)
> > 
> > Hmm. This is also the code that is in the Tcl generic distribution. I would
> > love to see this submitted as a patch to Scriptics and see what they say
> > first. I hate CYGNUS LOCAL changes, and this is definitely one.
> > 
> > So go ahead and accept it on the condition that it is also submitted to
> > Scriptics.
> 
> I've applied this to all relevant branches.  Alexandre, can you please
> send it to Scriptics.
> 
> 	Andrew

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12])
  2000-04-20  0:17       ` Mo DeJong
@ 2000-04-20  0:34         ` Andrew Cagney
  2000-04-20 13:45           ` Alexandre Oliva
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Cagney @ 2000-04-20  0:34 UTC (permalink / raw)
  To: Mo DeJong; +Cc: Alexandre Oliva, Insight (GDB GUI)

Mo DeJong wrote:
> 
> If nobody else wants to do it, you can send me the patch and I will
> put it into the scriptics bug database.

Attatched is the original report.  Thanks!

	Andrew


To : gdb-patches at sourceware dot cygnus dot com
Subject : Patch for tcl to build on GNU/Linux/sparc (RedHat Linux 6.[12])
From : Alexandre Oliva <aoliva at cygnus dot com>
Date : 19 Apr 2000 11:27:09 -0300
Organization : Cygnus Solutions, a Red Hat Company

I had to install this patch in order to get the GDB tree to build on
GNU/Linux/sparc.  Ok to install?  Release branch?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12])
  2000-04-20  0:34         ` Andrew Cagney
@ 2000-04-20 13:45           ` Alexandre Oliva
  0 siblings, 0 replies; 7+ messages in thread
From: Alexandre Oliva @ 2000-04-20 13:45 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: Mo DeJong, Insight (GDB GUI)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 555 bytes --]

On Apr 20, 2000, Andrew Cagney <ac131313@cygnus.com> wrote:

> Mo DeJong wrote:
>> 
>> If nobody else wants to do it, you can send me the patch and I will
>> put it into the scriptics bug database.

> Attatched is the original report.  Thanks!

Thank you all :-)

-- 
Alexandre Oliva    Enjoy Guaraná, see http://www.ic.unicamp.br/~oliva/
Cygnus Solutions, a Red Hat company        aoliva@{redhat, cygnus}.com
Free Software Developer and Evangelist    CS PhD student at IC-Unicamp
oliva@{lsd.ic.unicamp.br, gnu.org}   Write to mailing lists, not to me

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2000-04-20 13:45 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <orvh1erwsi.fsf@zecarneiro.lsd.ic.unicamp.br>
2000-04-19 16:40 ` Patch for tcl to build on GNU/Linux/sparc (RedHat Linux 6.[12]) Andrew Cagney
2000-04-19 17:01   ` Syd Polk
2000-04-19 17:05     ` James Ingham
2000-04-20  0:05     ` Patch for tcl to build on GNU/Linux/sparc (RedHat Linux6.[12]) Andrew Cagney
2000-04-20  0:17       ` Mo DeJong
2000-04-20  0:34         ` Andrew Cagney
2000-04-20 13:45           ` Alexandre Oliva

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).