diff options
author | Mark Kettenis <kettenis@gnu.org> | 2002-10-20 14:38:26 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2002-10-20 14:38:26 +0000 |
commit | 03cc47f70c3e8b06d544e991804faecf0f0d5b01 (patch) | |
tree | 5057dcc5a6f4abdb9f08a0a1f4673da3ee751866 | |
parent | 005328e3424c897b43ff0f6666bcf6f10efcb5d7 (diff) | |
download | gdb-03cc47f70c3e8b06d544e991804faecf0f0d5b01.zip gdb-03cc47f70c3e8b06d544e991804faecf0f0d5b01.tar.gz gdb-03cc47f70c3e8b06d544e991804faecf0f0d5b01.tar.bz2 |
* solib-sunos.c: Include "bcache.h" and "regcache.h".
* Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h).
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/Makefile.in | 3 | ||||
-rw-r--r-- | gdb/solib-sunos.c | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9edd108..5b33e37 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2002-10-20 Mark Kettenis <kettenis@gnu.org> + * solib-sunos.c: Include "bcache.h" and "regcache.h". + * Makefile.in (solib-sunos.o): Add $(bcache_h) and $(regcache_h). + * configure.tgt (i[3456]86-*-openbsd*): Set gdb_target to obds. * config/i386/obsd.mt: New file. * i386bsd-nat.c (_initialize_i386bsd_nat): Introduce diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 416706a..c2bb7a2 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2129,7 +2129,8 @@ solib-legacy.o: solib-legacy.c $(defs_h) $(gdbcore_h) $(solib_svr4_h) solib-osf.o: solib-osf.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \ $(symfile_h) $(objfiles_h) $(target_h) $(inferior_h) $(solist_h) solib-sunos.o: solib-sunos.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \ - $(symfile_h) $(objfiles_h) $(gdbcore_h) $(inferior_h) $(solist_h) + $(symfile_h) $(objfiles_h) $(gdbcore_h) $(inferior_h) $(solist_h) \ + $(bcache_h) $(regcache_h) solib-svr4.o: solib-svr4.c $(defs_h) $(elf_external_h) $(elf_common_h) \ $(elf_mips_h) $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) \ $(gdbcore_h) $(target_h) $(inferior_h) $(solist_h) $(solib_svr4_h) diff --git a/gdb/solib-sunos.c b/gdb/solib-sunos.c index 6ffecb5..ae11567 100644 --- a/gdb/solib-sunos.c +++ b/gdb/solib-sunos.c @@ -39,6 +39,8 @@ #include "gdbcore.h" #include "inferior.h" #include "solist.h" +#include "bcache.h" +#include "regcache.h" /* Link map info to include in an allocated so_list entry */ |