diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-04-27 14:30:15 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-04-27 14:30:15 +0000 |
commit | 4b188b9f378958b975c48f5de1bd11ea042ef632 (patch) | |
tree | 7b01327b76545dd2533199d3f36be1308d2e2276 /gdb/Makefile.in | |
parent | 6fe7699b81b8c5f13f22e051986b5b4f8b37741f (diff) | |
download | ppe42-binutils-4b188b9f378958b975c48f5de1bd11ea042ef632.tar.gz ppe42-binutils-4b188b9f378958b975c48f5de1bd11ea042ef632.zip |
* solib-svr4.c: Update copyright year. Include "gdb_assert.h".
(SVR4_FETCH_LINK_MAP_OFFSETS): Don't define if not already
defined.
(legacy_fetch_link_map_offsets): Remove prototype.
(fetch_link_map_offsets_gdbarch_data): Remove.
(LM_ADDR, LM_NEXT, IGNORE_FIRST_LINK_MAP_ENTRY)
(first_link_map_member, open_symbol_file_object, svr4_current_sos)
(svr4_fetch_objfile_link_map): Call svr4_fetch_link_map_offsets
instead of SVR4_FETCH_LINK_MAP_OFFSETS.
(solib_svr4_data): New variable.
(struct solib_svr4_ops): New.
(solib_svr4_init): New fynction.
(legacy_fetch_link_map_offsets, init_fetch_link_map_offsets):
Remove functions.
(svr4_fetch_link_map_offsets, svr4_have_link_map_offsets): Rewrite
using the new `struct solib_svr4_ops'.
(_initialize_svr4_solib): Replace registration of per-architecture
data. Add temporary hack to set
svr4_legacy_fetch_link_map_offsets if SVR4_FETCH_LINK_MAP_OFFSETS
is set.
* Makefile.in (solib-svr4.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index fdbb819477..a64d403eab 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2540,8 +2540,8 @@ solib-sunos.o: solib-sunos.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_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) \ - $(bfd_target_h) $(exec_h) + $(gdbcore_h) $(target_h) $(inferior_h) $(gdb_assert_h) \ + $(solist_h) $(solib_svr4_h) $(bfd_target_h) $(exec_h) sol-thread.o: sol-thread.c $(defs_h) $(gdbthread_h) $(target_h) \ $(inferior_h) $(gdb_stat_h) $(gdbcmd_h) $(gdbcore_h) $(regcache_h) \ $(symfile_h) $(gdb_string_h) $(gregset_h) |