diff options
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rwxr-xr-x | gdb/configure | 3 | ||||
-rw-r--r-- | gdb/configure.in | 3 | ||||
-rw-r--r-- | gdb/target.c | 3 |
4 files changed, 15 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3fe9982..8c59298 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +Sat Jul 15 01:02:53 1995 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * config/alpha/alpha-osf3.mh, config/alpha/nm-osf3.h: New files + for OSF/1-3.x procfs support. + * configure.in (alpha-dec-osf): Use them when configuring + for OSF/1-3.x. + * configure: Updated. + * target.c: Include <string.h>. + Fri Jul 14 16:16:56 1995 J.T. Conklin <jtc@rtl.cygnus.com> * Makefile.in, configure.in: Use one variable, frags, to hold diff --git a/gdb/configure b/gdb/configure index 34c20b0..eeca44b 100755 --- a/gdb/configure +++ b/gdb/configure @@ -1546,7 +1546,8 @@ case "${host}" in a29k-*-*) gdb_host=ultra3 ;; alpha-*-osf1*) gdb_host=alpha-osf1 ;; -alpha-*-osf[23456789]*) gdb_host=alpha-osf2 ;; +alpha-*-osf2*) gdb_host=alpha-osf2 ;; +alpha-*-osf[3456789]*) gdb_host=alpha-osf3 ;; arm-*-*) gdb_host=arm ;; diff --git a/gdb/configure.in b/gdb/configure.in index 852c258..f4f1b2c 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -92,7 +92,8 @@ case "${host}" in a29k-*-*) gdb_host=ultra3 ;; alpha-*-osf1*) gdb_host=alpha-osf1 ;; -alpha-*-osf[23456789]*) gdb_host=alpha-osf2 ;; +alpha-*-osf2*) gdb_host=alpha-osf2 ;; +alpha-*-osf[3456789]*) gdb_host=alpha-osf3 ;; arm-*-*) gdb_host=arm ;; diff --git a/gdb/target.c b/gdb/target.c index 9368d58..838afb6 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -1,5 +1,5 @@ /* Select target systems and architectures at runtime for GDB. - Copyright 1990, 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright 1990, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. Contributed by Cygnus Support. This file is part of GDB. @@ -21,6 +21,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "defs.h" #include <errno.h> #include <ctype.h> +#include <string.h> #include "target.h" #include "gdbcmd.h" #include "symtab.h" |