From 8391a5231556a37c6f7eef871c3e310e91623b00 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 29 Jan 2004 11:42:46 +0000 Subject: Scrub up use of ELF_USES_RELOCA and eliminte some unsightly ifdefs --- ldso/include/dl-elf.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ldso/include/dl-elf.h') diff --git a/ldso/include/dl-elf.h b/ldso/include/dl-elf.h index 7ae1591c2..4a1488432 100644 --- a/ldso/include/dl-elf.h +++ b/ldso/include/dl-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) | \ -- cgit v1.2.3