diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | elf/elf.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index f33212f549..e5e6984264 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-01-13 Carlos O'Donell <carlos@redhat.com> + + [BZ #22707] + * elf/elf.h (DF_1_STUB): Define. + (DF_1_PIE): Define. + 2018-01-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com> [BZ #22697] diff --git a/elf/elf.h b/elf/elf.h index 031850377b..da5ccb23ce 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -967,6 +967,8 @@ typedef struct #define DF_1_SYMINTPOSE 0x00800000 /* Object has individual interposers. */ #define DF_1_GLOBAUDIT 0x01000000 /* Global auditing required. */ #define DF_1_SINGLETON 0x02000000 /* Singleton symbols are used. */ +#define DF_1_STUB 0x04000000 +#define DF_1_PIE 0x08000000 /* Flags for the feature selection in DT_FEATURE_1. */ #define DTF_1_PARINIT 0x00000001 |