Write ChangeLog entry for sef changes.
authorJim Kingdon <jkingdon@engr.sgi.com>
Mon, 23 Aug 1993 19:46:03 +0000 (19:46 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Mon, 23 Aug 1993 19:46:03 +0000 (19:46 +0000)
Remove dbxread.c change; I handle this in BFD by making the name start
with "a.out".

gdb/ChangeLog
gdb/configure.in
gdb/dbxread.c

index b180d676350f9cd64a0a9885c3a061f8d8e7ca03..9ae2c24ced8b2e4f1f428021bcbd0e491af713e8 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 23 1993  Sean Fagan  (sef@cygnus.com)
+                and Jim Kingdon  (kingdon@cygnus.com)
+
+       Add NetBSD support:
+       * configure.in: Recognize netbsd.
+
 Fri Aug 20 14:01:39 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
        * remote-nindy.c: Remove unused include of sys/ioctl.h.
index 2c9a033ae5f6590cb4e3757c9d2ef17cb4ddd80d..1a696338b28717ffc4aa6e3e69bd0f6fe236b9c0 100644 (file)
@@ -40,7 +40,7 @@ i[34]86-sequent-sysv*)        gdb_host=ptx ;;
 
 i[34]86-*-aix*)                gdb_host=i386aix ;;
 i[34]86-*-bsd*)                gdb_host=i386bsd ;;
-i[34]86-*-netbsd     gdb_host=i386bsd ;;
+i[34]86-*-netbsd*)     gdb_host=i386bsd ;;
 i[34]86-*-go32)                gdb_host=go32 ;;
 i[34]86-*-linux)       gdb_host=linux ;;
 i[34]86-*-lynx*)       gdb_host=i386lynx ;;
@@ -178,7 +178,7 @@ i[34]86-*-elf)              gdb_target=i386v ;;
 
 i[34]86-*-aix*)                gdb_target=i386aix ;;
 i[34]86-*-bsd*)                gdb_target=i386bsd ;;
-i[34]86-*-netbsd     gdb_target=i386bsd ;;
+i[34]86-*-netbsd*)     gdb_target=i386bsd ;;
 i[34]86-*-go32)                gdb_target=i386aout ;;
 i[34]86-*-lynx*)       gdb_target=i386lynx
                        configdirs="${configdirs} gdbserver"
index b55362e2f21ae18a3dff23687094210e333c090e..81e38274e22144066bd56c092fc02b54c511ebe4 100644 (file)
@@ -2184,18 +2184,6 @@ static struct sym_fns aout_sym_fns =
   NULL                 /* next: pointer to next struct sym_fns */
 };
 
-static struct sym_fns netbsd386_sym_fns =
-{
-  "netbsd-386",                /* sym_name: name or name prefix of BFD target type */
-  10,                  /* sym_namelen: number of significant sym_name chars */
-  dbx_new_init,                /* sym_new_init: init anything gbl to entire symtab */
-  dbx_symfile_init,    /* sym_init: read initial info, setup for sym_read() */
-  dbx_symfile_read,    /* sym_read: read a symbol file into symtab */
-  dbx_symfile_finish,  /* sym_finish: finished with file, cleanup */
-  dbx_symfile_offsets, /* sym_offsets: parse user's offsets to internal form */
-  NULL                 /* next: pointer to next struct sym_fns */
-};
-
 static struct sym_fns bout_sym_fns =
 {
   "b.out",             /* sym_name: name or name prefix of BFD target type */
@@ -2213,6 +2201,5 @@ _initialize_dbxread ()
 {
   add_symtab_fns(&sunos_sym_fns);
   add_symtab_fns(&aout_sym_fns);
-  add_symtab_fns(&netbsd386_sym_fns);
   add_symtab_fns(&bout_sym_fns);
 }