diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-12-31 19:46:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-12-31 19:46:37 +0000 |
commit | 148437ec14d18450dcfa0ebe7cfa2db57e263392 (patch) | |
tree | a953bda7330b884fa25a988597df2eab8f586944 /bfd/bfd-in.h | |
parent | a5094cb9d5435a88738bf32b2ec662ceab2c32f4 (diff) | |
download | binutils-gdb-148437ec14d18450dcfa0ebe7cfa2db57e263392.tar.gz |
* elflink.h (NAME(bfd_elf,size_dynamic_sections)): Add
filter_shlib and auxiliary_filter_shlib parameters.
* elf.c (_bfd_elf_print_private_bfd_data): Handle DT_AUXILIARY and
DT_FILTER.
* bfd-in.h (bfd_elf32_size_dynamic_sections): Update declaration.
(bfd_elf64_size_dynamic_sections): Likewise.
* bfd-in2.h: Rebuild.
Diffstat (limited to 'bfd/bfd-in.h')
-rw-r--r-- | bfd/bfd-in.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/bfd-in.h b/bfd/bfd-in.h index fadbd041ac2..7378e41aeb4 100644 --- a/bfd/bfd-in.h +++ b/bfd/bfd-in.h @@ -199,7 +199,7 @@ typedef enum bfd_format { to another, and are not necessarily correct). */ /* No flags. */ -#define NO_FLAGS 0x00 +#define BFD_NO_FLAGS 0x00 /* BFD contains relocation entries. */ #define HAS_RELOC 0x01 @@ -605,11 +605,11 @@ extern boolean bfd_elf64_record_link_assignment extern struct bfd_link_needed_list *bfd_elf_get_needed_list PARAMS ((bfd *, struct bfd_link_info *)); extern boolean bfd_elf32_size_dynamic_sections - PARAMS ((bfd *, const char *, const char *, boolean, - struct bfd_link_info *, struct sec **)); + PARAMS ((bfd *, const char *, const char *, boolean, const char *, + const char *, struct bfd_link_info *, struct sec **)); extern boolean bfd_elf64_size_dynamic_sections - PARAMS ((bfd *, const char *, const char *, boolean, - struct bfd_link_info *, struct sec **)); + PARAMS ((bfd *, const char *, const char *, boolean, const char *, + const char *, struct bfd_link_info *, struct sec **)); extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *)); extern const char *bfd_elf_get_dt_soname PARAMS ((bfd *)); |