diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-01-29 11:42:46 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-01-29 11:42:46 +0000 |
commit | 8391a5231556a37c6f7eef871c3e310e91623b00 (patch) | |
tree | c9db585d48ae03c1f37146720780f0f3e5c1cd31 /ldso/include/ld_elf.h | |
parent | 8e5b520d884b4793f69415b303d6f4447a7521c2 (diff) |
Scrub up use of ELF_USES_RELOCA and eliminte some unsightly ifdefs
Diffstat (limited to 'ldso/include/ld_elf.h')
-rw-r--r-- | ldso/include/ld_elf.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ldso/include/ld_elf.h b/ldso/include/ld_elf.h index 7ae1591c2..4a1488432 100644 --- a/ldso/include/ld_elf.h +++ b/ldso/include/ld_elf.h @@ -77,11 +77,20 @@ extern int _dl_linux_resolve(void); */ #ifdef ELF_USES_RELOCA # define ELF_RELOC ElfW(Rela) +# define DT_RELOC_TABLE_ADDR DT_RELA +# define DT_RELOC_TABLE_SIZE DT_RELASZ +# define UNSUPPORTED_RELOC_TYPE DT_REL +# define UNSUPPORTED_RELOC_STR "REL" #else # define ELF_RELOC ElfW(Rel) +# define DT_RELOC_TABLE_ADDR DT_REL +# define DT_RELOC_TABLE_SIZE DT_RELSZ +# define UNSUPPORTED_RELOC_TYPE DT_RELA +# define UNSUPPORTED_RELOC_STR "RELA" #endif + /* Convert between the Linux flags for page protections and the ones specified in the ELF standard. */ #define LXFLAGS(X) ( (((X) & PF_R) ? PROT_READ : 0) | \ |