aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-01-27 04:10:38 +0000
committerAndrew Cagney <cagney@redhat.com>2004-01-27 04:10:38 +0000
commit48184fd4b35069dfba8c9dda43aa3b079d657b81 (patch)
treec367305e615313ff100b7e966e362ec83b360fe2
parentf3699be3e9231c139bd66cb7473b09eb87e1802d (diff)
downloadgdb-48184fd4b35069dfba8c9dda43aa3b079d657b81.zip
gdb-48184fd4b35069dfba8c9dda43aa3b079d657b81.tar.gz
gdb-48184fd4b35069dfba8c9dda43aa3b079d657b81.tar.bz2
2003-12-29 Robert Millan <robertmh@gnu.org>
Patch committed by Andrw Cagney. * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu. * configure.tgt: Match knetbsd*-gnu.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/configure.host6
-rw-r--r--gdb/configure.tgt3
3 files changed, 12 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index cffe7f5..7879b48 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+2003-12-29 Robert Millan <robertmh@gnu.org>
+
+ Patch committed by Andrw Cagney.
+ * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
+ * configure.tgt: Match knetbsd*-gnu.
+
2004-01-26 Andrew Cagney <cagney@redhat.com>
* breakpoint.c (catch_command_1): Delete #ifdef code.
diff --git a/gdb/configure.host b/gdb/configure.host
index a61de2a..668008b 100644
--- a/gdb/configure.host
+++ b/gdb/configure.host
@@ -51,9 +51,11 @@ hppa*-*-hpux*) gdb_host=hppahpux ;;
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* | i[34567]86-*-kfreebsd*-gnu)
+ gdb_host=fbsd ;;
+i[34567]86-*-netbsdelf* | i[34567]86-*-knetbsd*-gnu)
+ gdb_host=nbsdelf ;;
i[34567]86-*-freebsd*) gdb_host=fbsd ;;
-i[34567]86-*-netbsdelf*) gdb_host=nbsdelf ;;
-i[34567]86-*-netbsdaout*) gdb_host=nbsdaout ;;
i[34567]86-*-netbsd*) gdb_host=nbsdaout ;;
i[34567]86-*-go32*) gdb_host=go32 ;;
i[34567]86-*-msdosdjgpp*) gdb_host=go32 ;;
diff --git a/gdb/configure.tgt b/gdb/configure.tgt
index ef9484c..0d159d4 100644
--- a/gdb/configure.tgt
+++ b/gdb/configure.tgt
@@ -77,7 +77,8 @@ hppa*-*-*) gdb_target=hppa ;;
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 ;;