diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-05-22 04:15:36 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-05-22 04:15:36 +0000 |
commit | d6c6b5f4ca5b7e3829adc6a7398a55a8b243420f (patch) | |
tree | 95f4427c18ff1dbacb9040da20f92b397642c1e5 | |
parent | 1f5dec98ed4da2cb359d55ef2fd8ecedd6b173b8 (diff) | |
download | gdb-d6c6b5f4ca5b7e3829adc6a7398a55a8b243420f.tar.gz |
* Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
to dependency list.
* alphanbsd-tdep.c: Include solib-svr4.h.
* shnbsd-tdep.c: Ditto.
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/Makefile.in | 4 | ||||
-rw-r--r-- | gdb/alphanbsd-tdep.c | 2 | ||||
-rw-r--r-- | gdb/shnbsd-tdep.c | 2 |
4 files changed, 13 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cbe799a70c0..5ecbadb7ecd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,12 @@ 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com> + * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h + to dependency list. + * alphanbsd-tdep.c: Include solib-svr4.h. + * shnbsd-tdep.c: Ditto. + +2002-05-22 Jason Thorpe <thorpej@wasabisystems.com> + * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and nbsd-tdep.h to dependency list. * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*, diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 69723ddf33a..c050aeb736a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1278,7 +1278,7 @@ alphabsd-tdep.o: alphabsd-tdep.c $(defs_h) $(regcache_h) alphabsd-tdep.h alphafbsd-tdep.o: alphafbsd-tdep.c $(defs_h) $(value_h) $(alpha_tdep_h) alphanbsd-tdep.o: alphanbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \ - $(value_h) $(alpha_tdep_h) alphabsd-tdep.h nbsd-tdep.h + $(value_h) $(alpha_tdep_h) solib-svr4.h alphabsd-tdep.h nbsd-tdep.h annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) $(gdbtypes_h) @@ -2071,7 +2071,7 @@ sh-tdep.o: sh-tdep.c $(bfd_h) $(dis_asm_h) \ $(regcache_h) $(doublest_h) $(sh_tdep_h) shnbsd-tdep.o: shnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \ - $(value_h) $(sh_tdep_h) shnbsd-tdep.h nbsd-tdep.h + $(value_h) $(sh_tdep_h) solib-svr4.h shnbsd-tdep.h nbsd-tdep.h shnbsd-nat.o: shnbsd-nat.c $(defs_h) $(inferior_h) shnbsd-tdep.h diff --git a/gdb/alphanbsd-tdep.c b/gdb/alphanbsd-tdep.c index ba705aa4015..01a0f496816 100644 --- a/gdb/alphanbsd-tdep.c +++ b/gdb/alphanbsd-tdep.c @@ -24,6 +24,8 @@ #include "regcache.h" #include "value.h" +#include "solib-svr4.h" + #include "alpha-tdep.h" #include "alphabsd-tdep.h" #include "nbsd-tdep.h" diff --git a/gdb/shnbsd-tdep.c b/gdb/shnbsd-tdep.c index 1a58d3c1f1f..02982267ba2 100644 --- a/gdb/shnbsd-tdep.c +++ b/gdb/shnbsd-tdep.c @@ -24,6 +24,8 @@ #include "regcache.h" #include "value.h" +#include "solib-svr4.h" + #include "nbsd-tdep.h" #include "sh-tdep.h" #include "shnbsd-tdep.h" |