diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-08-06 15:53:08 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-08-06 15:53:08 +0000 |
commit | 5e34e75e9ebb6fb8ec12565389b4ef2017140878 (patch) | |
tree | 9dcf87d6b09735601e58adb150a9faa22b03fdd8 /gdb | |
parent | eb4c54a2884d1fc89fc500ab0a1a2877d8bc8bf7 (diff) | |
download | gdb-5e34e75e9ebb6fb8ec12565389b4ef2017140878.zip gdb-5e34e75e9ebb6fb8ec12565389b4ef2017140878.tar.gz gdb-5e34e75e9ebb6fb8ec12565389b4ef2017140878.tar.bz2 |
2002-08-06 Andrew Cagney <ac131313@redhat.com>
* gcore.c: Do not include <sys/procfs.h>.
* Makefile.in (gcore.o): Update dependencies.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/Makefile.in | 4 | ||||
-rw-r--r-- | gdb/gcore.c | 1 |
3 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0df93d6..24c58f1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2002-08-06 Andrew Cagney <ac131313@redhat.com> + + * gcore.c: Do not include <sys/procfs.h>. + * Makefile.in (gcore.o): Update dependencies. + 2002-08-06 Andrew Cagney <cagney@redhat.com> * configure.tgt: Make arc-*-* obsolete. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 77c9d55..2481bc8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1404,8 +1404,8 @@ corefile.o: corefile.c $(dis_asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \ $(target_h) $(gdbthread_h) $(gdb_string_h) $(regcache_h) -gcore.o: gcore.c $(defs_h) $(command_h) $(inferior_h) $(gdbcore_h) \ - $(BFD_SRC)/elf-bfd.h $(symfile_h) $(objfiles_h) +gcore.o: gcore.c $(defs_h) $(cli_decode_h) $(inferior_h) $(gdbcore_h) \ + $(elf_bfd_h) $(symfile_h) $(objfiles_h) linux-proc.o: linux-proc.c $(defs_h) $(inferior_h) $(regcache_h) $(gregset_h) \ $(gdbcore_h) $(gdbthread_h) $(elf_bfd_h) $(cli_decode_h) \ diff --git a/gdb/gcore.c b/gdb/gcore.c index 25d1ed7..9532f14 100644 --- a/gdb/gcore.c +++ b/gdb/gcore.c @@ -23,7 +23,6 @@ #include "inferior.h" #include "gdbcore.h" #include "elf-bfd.h" -#include <sys/procfs.h> #include "symfile.h" #include "objfiles.h" |