* [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb]
@ 2003-12-28 23:14 Robert Millan
2004-01-11 19:27 ` Andrew Cagney
0 siblings, 1 reply; 6+ messages in thread
From: Robert Millan @ 2003-12-28 23:14 UTC (permalink / raw)
To: gdb-patches; +Cc: glibc-bsd-hackers
[-- Attachment #1: Type: text/plain, Size: 932 bytes --]
Hi!
Fixes for triplet detection of GNU/kNetBSD and GNU/kFreeBSD. Patch is
attached, ChangeLog as follows. Remember to update config.{guess,sub}
in the respective locations (src and src/readline/support). Thanks.
for ChangeLog:
2003-12-29 Robert Millan <robertmh@gnu.org>
* config.guess: Update.
* config.sub: Likewise.
for gdb/ChangeLog:
2003-12-29 Robert Millan <robertmh@gnu.org>
* configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
* configure.tgt: Likewise.
for readline/ChangeLog.gdb:
2003-12-29 Robert Millan <robertmh@gnu.org>
* support/config.guess: Update.
* support/config.sub: Likewise.
--
Robert Millan
"[..] but the delight and pride of Aule is in the deed of making, and in the
thing made, and neither in possession nor in his own mastery; wherefore he
gives and hoards not, and is free from care, passing ever on to some new work."
-- J.R.R.T., Ainulindale (Silmarillion)
[-- Attachment #2: gdb.diff --]
[-- Type: text/plain, Size: 1632 bytes --]
ChangeLog:
2003-12-29 Robert Millan <robertmh@gnu.org>
* config.guess: Update.
* config.sub: Likewise.
gdb/ChangeLog:
2003-12-29 Robert Millan <robertmh@gnu.org>
* configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
* configure.tgt: Likewise.
readline/ChangeLog.gdb:
2003-12-29 Robert Millan <robertmh@gnu.org>
* support/config.guess: Update.
* support/config.sub: Likewise.
diff -ur src.old/gdb/configure.host src/gdb/configure.host
--- src.old/gdb/configure.host 2003-12-01 22:10:46.000000000 +0100
+++ src/gdb/configure.host 2003-12-28 23:54:20.000000000 +0100
@@ -50,8 +50,8 @@
i[34567]86-ncr-*) gdb_host=ncr3000 ;;
i[34567]86-*-bsd*) gdb_host=i386bsd ;;
i[34567]86-*-dgux*) gdb_host=i386v4 ;;
-i[34567]86-*-freebsd*) gdb_host=fbsd ;;
-i[34567]86-*-netbsdelf*) gdb_host=nbsdelf ;;
+i[34567]86-*-freebsd* | i[34567]86-*-kfreebsd*-gnu) gdb_host=fbsd ;;
+i[34567]86-*-netbsdelf* | i[34567]86-*-knetbsd*-gnu) gdb_host=nbsdelf ;;
i[34567]86-*-netbsdaout*) gdb_host=nbsdaout ;;
i[34567]86-*-netbsd*) gdb_host=nbsdaout ;;
i[34567]86-*-go32*) gdb_host=go32 ;;
diff -ur src.old/gdb/configure.tgt src/gdb/configure.tgt
--- src.old/gdb/configure.tgt 2003-12-01 22:10:46.000000000 +0100
+++ src/gdb/configure.tgt 2003-12-28 23:54:20.000000000 +0100
@@ -78,7 +78,7 @@
i[34567]86-ncr-*) gdb_target=ncr3000 ;;
i[34567]86-*-bsd*) gdb_target=i386bsd ;;
-i[34567]86-*-netbsd*) gdb_target=nbsd ;;
+i[34567]86-*-netbsd* | i[34567]86-*-knetbsd*-gnu) gdb_target=nbsd ;;
i[34567]86-*-openbsd*) gdb_target=obsd ;;
i[34567]86-*-go32*) gdb_target=i386aout ;;
i[34567]86-*-msdosdjgpp*) gdb_target=go32 ;;
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb]
2003-12-28 23:14 [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb] Robert Millan
@ 2004-01-11 19:27 ` Andrew Cagney
2004-01-11 19:45 ` Robert Millan
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Cagney @ 2004-01-11 19:27 UTC (permalink / raw)
To: Robert Millan; +Cc: gdb-patches, glibc-bsd-hackers
> 2003-12-29 Robert Millan <robertmh@gnu.org>
>
> * config.guess: Update.
> * config.sub: Likewise.
>
Sanity check here? These changes to config.guess and config.sub are in
the upstream config sources? If they are I can just import new versions.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb]
2004-01-11 19:27 ` Andrew Cagney
@ 2004-01-11 19:45 ` Robert Millan
2004-01-24 19:24 ` Robert Millan
2004-01-27 4:08 ` Andrew Cagney
0 siblings, 2 replies; 6+ messages in thread
From: Robert Millan @ 2004-01-11 19:45 UTC (permalink / raw)
To: Andrew Cagney; +Cc: gdb-patches, glibc-bsd-hackers
On Sun, Jan 11, 2004 at 02:27:34PM -0500, Andrew Cagney wrote:
> >2003-12-29 Robert Millan <robertmh@gnu.org>
> >
> > * config.guess: Update.
> > * config.sub: Likewise.
> >
> Sanity check here? These changes to config.guess and config.sub are in
> the upstream config sources? If they are I can just import new versions.
Sure they are.
--
Robert Millan
"[..] but the delight and pride of Aule is in the deed of making, and in the
thing made, and neither in possession nor in his own mastery; wherefore he
gives and hoards not, and is free from care, passing ever on to some new work."
-- J.R.R.T., Ainulindale (Silmarillion)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb]
2004-01-11 19:45 ` Robert Millan
@ 2004-01-24 19:24 ` Robert Millan
2004-01-27 4:08 ` Andrew Cagney
1 sibling, 0 replies; 6+ messages in thread
From: Robert Millan @ 2004-01-24 19:24 UTC (permalink / raw)
To: Andrew Cagney; +Cc: gdb-patches, glibc-bsd-hackers
On Sun, Jan 11, 2004 at 08:39:33PM +0100, Robert Millan wrote:
> On Sun, Jan 11, 2004 at 02:27:34PM -0500, Andrew Cagney wrote:
> > >2003-12-29 Robert Millan <robertmh@gnu.org>
> > >
> > > * config.guess: Update.
> > > * config.sub: Likewise.
> > >
> > Sanity check here? These changes to config.guess and config.sub are in
> > the upstream config sources? If they are I can just import new versions.
>
> Sure they are.
Ping.
(patch is in http://sources.redhat.com/ml/gdb-patches/2003-12/msg00499.html)
--
Robert Millan
"[..] but the delight and pride of Aule is in the deed of making, and in the
thing made, and neither in possession nor in his own mastery; wherefore he
gives and hoards not, and is free from care, passing ever on to some new work."
-- J.R.R.T., Ainulindale (Silmarillion)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb]
2004-01-11 19:45 ` Robert Millan
2004-01-24 19:24 ` Robert Millan
@ 2004-01-27 4:08 ` Andrew Cagney
2004-01-27 19:22 ` Robert Millan
1 sibling, 1 reply; 6+ messages in thread
From: Andrew Cagney @ 2004-01-27 4:08 UTC (permalink / raw)
To: Robert Millan; +Cc: gdb-patches, glibc-bsd-hackers
> Sanity check here? These changes to config.guess and config.sub are in
>> the upstream config sources? If they are I can just import new versions.
>
>
> Sure they are.
Good. I'll pull in a more up-to-date version shortly (its a standard
part of cutting a GDB branch).
> for gdb/ChangeLog:
>
> 2003-12-29 Robert Millan <robertmh@gnu.org>
>
> * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
> * configure.tgt: Likewise.
>
I've committed this.
Andrew
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb]
2004-01-27 4:08 ` Andrew Cagney
@ 2004-01-27 19:22 ` Robert Millan
0 siblings, 0 replies; 6+ messages in thread
From: Robert Millan @ 2004-01-27 19:22 UTC (permalink / raw)
To: Andrew Cagney; +Cc: gdb-patches, glibc-bsd-hackers
On Mon, Jan 26, 2004 at 11:08:34PM -0500, Andrew Cagney wrote:
>
> Good. I'll pull in a more up-to-date version shortly (its a standard
> part of cutting a GDB branch).
Fine, no hurry for that.
> >2003-12-29 Robert Millan <robertmh@gnu.org>
> >
> > * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
> > * configure.tgt: Likewise.
> >
> I've committed this.
Thanks.
--
Robert Millan
"[..] but the delight and pride of Aule is in the deed of making, and in the
thing made, and neither in possession nor in his own mastery; wherefore he
gives and hoards not, and is free from care, passing ever on to some new work."
-- J.R.R.T., Ainulindale (Silmarillion)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-01-27 19:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-28 23:14 [PATCH] GNU/k*BSD fixes (w/ChangeLog) [gdb] Robert Millan
2004-01-11 19:27 ` Andrew Cagney
2004-01-11 19:45 ` Robert Millan
2004-01-24 19:24 ` Robert Millan
2004-01-27 4:08 ` Andrew Cagney
2004-01-27 19:22 ` Robert Millan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox