diff options
author | Jeff Law <law@redhat.com> | 2000-12-11 17:55:58 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 2000-12-11 17:55:58 +0000 |
commit | a7eaccae3a3830ddd3dbd6daf7f0ff7f4e8501ab (patch) | |
tree | 0b08967ca77bd8c891b40c8a232aca961222cf72 | |
parent | 24ef47fe10995e32a564c487ae588a5eda76a8bb (diff) | |
download | newlib-a7eaccae3a3830ddd3dbd6daf7f0ff7f4e8501ab.zip newlib-a7eaccae3a3830ddd3dbd6daf7f0ff7f4e8501ab.tar.gz newlib-a7eaccae3a3830ddd3dbd6daf7f0ff7f4e8501ab.tar.bz2 |
* hppa.h (DT_HP_*): Define relative to OLD_DT_LOOS for hpux
compatibility.
-rw-r--r-- | include/elf/ChangeLog | 5 | ||||
-rw-r--r-- | include/elf/hppa.h | 29 |
2 files changed, 21 insertions, 13 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 2251ba0..a435667 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,8 @@ +Mon Dec 11 10:56:58 2000 Jeffrey A Law (law@cygnus.com) + + * hppa.h (DT_HP_*): Define relative to OLD_DT_LOOS for hpux + compatibility. + 2000-10-16 Chris Demetriou <cgd@sibyte.com> * mips.h (E_MIPS_ARCH_32): New constant. diff --git a/include/elf/hppa.h b/include/elf/hppa.h index 82b4db8..e9ec03a 100644 --- a/include/elf/hppa.h +++ b/include/elf/hppa.h @@ -500,19 +500,22 @@ typedef enum elf_hppa_reloc_type elf_hppa_reloc_type; /* Processor specific dynamic array tags. */ -#define DT_HP_LOAD_MAP (DT_LOOS + 0x0) -#define DT_HP_DLD_FLAGS (DT_LOOS + 0x1) -#define DT_HP_DLD_HOOK (DT_LOOS + 0x2) -#define DT_HP_UX10_INIT (DT_LOOS + 0x3) -#define DT_HP_UX10_INITSZ (DT_LOOS + 0x4) -#define DT_HP_PREINIT (DT_LOOS + 0x5) -#define DT_HP_PREINITSZ (DT_LOOS + 0x6) -#define DT_HP_NEEDED (DT_LOOS + 0x7) -#define DT_HP_TIME_STAMP (DT_LOOS + 0x8) -#define DT_HP_CHECKSUM (DT_LOOS + 0x9) -#define DT_HP_GST_SIZE (DT_LOOS + 0xa) -#define DT_HP_GST_VERSION (DT_LOOS + 0xb) -#define DT_HP_GST_HASHVAL (DT_LOOS + 0xc) +/* Arggh. HP's tools define these symbols based on the + old value of DT_LOOS. So we must do the same to be + compatible. */ +#define DT_HP_LOAD_MAP (OLD_DT_LOOS + 0x0) +#define DT_HP_DLD_FLAGS (OLD_DT_LOOS + 0x1) +#define DT_HP_DLD_HOOK (OLD_DT_LOOS + 0x2) +#define DT_HP_UX10_INIT (OLD_DT_LOOS + 0x3) +#define DT_HP_UX10_INITSZ (OLD_DT_LOOS + 0x4) +#define DT_HP_PREINIT (OLD_DT_LOOS + 0x5) +#define DT_HP_PREINITSZ (OLD_DT_LOOS + 0x6) +#define DT_HP_NEEDED (OLD_DT_LOOS + 0x7) +#define DT_HP_TIME_STAMP (OLD_DT_LOOS + 0x8) +#define DT_HP_CHECKSUM (OLD_DT_LOOS + 0x9) +#define DT_HP_GST_SIZE (OLD_DT_LOOS + 0xa) +#define DT_HP_GST_VERSION (OLD_DT_LOOS + 0xb) +#define DT_HP_GST_HASHVAL (OLD_DT_LOOS + 0xc) /* Values for DT_HP_DLD_FLAGS. */ #define DT_HP_DEBUG_PRIVATE 0x0001 /* Map text private */ |