From: Andrew Cagney Date: Fri, 28 Jun 2002 22:05:47 +0000 (+0000) Subject: * Makefile.in (objfiles_h): Add $(bcache_h). X-Git-Tag: gdb_5_2_1-2002-07-23-release~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b8cc38fa4d3d31d031f5244dee1b33455416a5dc;p=thirdparty%2Fbinutils-gdb.git * Makefile.in (objfiles_h): Add $(bcache_h). * objfiles.h: Include "bcache.h". * Makefile.in (symtab_h): Remove $(bcache_h). * symtab.h: Do not include "bcache.h". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 11f1ff8a4fa..a91540f3440 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2002-06-28 Andrew Cagney + + * Makefile.in (objfiles_h): Add $(bcache_h). + * objfiles.h: Include "bcache.h". + + * Makefile.in (symtab_h): Remove $(bcache_h). + * symtab.h: Do not include "bcache.h". + 2002-06-28 David O'Brien Merge from mainline: diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3b31aed8870..2df79bdc033 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -624,7 +624,7 @@ language_h = language.h linespec_h = linespec.h memattr_h = memattr.h monitor_h = monitor.h -objfiles_h = objfiles.h +objfiles_h = objfiles.h $(bcache_h) parser_defs_h = parser-defs.h $(doublest_h) regcache_h = regcache.h remote_h = remote.h @@ -635,7 +635,7 @@ solist_h = solist.h source_h = source.h stabsread_h = stabsread.h symfile_h = symfile.h -symtab_h = symtab.h $(bcache_h) +symtab_h = symtab.h target_h = target.h $(bfd_h) $(symtab_h) $(dcache_h) $(memattr_h) terminal_h = terminal.h top_h = top.h diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 992ae71e47f..d1746a970ac 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -22,6 +22,8 @@ #if !defined (OBJFILES_H) #define OBJFILES_H +#include "bcache.h" + /* This structure maintains information on a per-objfile basis about the "entry point" of the objfile, and the scope within which the entry point exists. It is possible that gdb will see more than one objfile that is diff --git a/gdb/symtab.h b/gdb/symtab.h index 75470e60f75..5c11e75cada 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -28,7 +28,6 @@ #include "obstack.h" #define obstack_chunk_alloc xmalloc #define obstack_chunk_free xfree -#include "bcache.h" /* Don't do this; it means that if some .o's are compiled with GNU C and some are not (easy to do accidentally the way we configure