diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-03-12 12:06:01 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-03-12 12:06:01 +0100 |
commit | 38b52865d4ccfee3647f27e969e539a4396a73b1 (patch) | |
tree | e9cb93d1a491058062bcf12fa897a3ccc542fe1c | |
parent | 08504de71813ddbd447bfbca4a325cbe8ce8bcda (diff) | |
download | glibc-38b52865d4ccfee3647f27e969e539a4396a73b1.tar glibc-38b52865d4ccfee3647f27e969e539a4396a73b1.tar.gz glibc-38b52865d4ccfee3647f27e969e539a4396a73b1.tar.bz2 glibc-38b52865d4ccfee3647f27e969e539a4396a73b1.zip |
elf: Add DF_1_KMOD, DF_1_WEAKFILTER, DF_1_NOCOMMON to <elf.h>
These constants (originally from Solaris) were part of the binutils
2.31 release.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | elf/elf.h | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2019-03-12 Florian Weimer <fweimer@redhat.com> + * elf/elf.h (DF_1_KMOD, DF_1_WEAKFILTER, DF_1_NOCOMMON): Define. + +2019-03-12 Florian Weimer <fweimer@redhat.com> + [BZ #24047] resolv: Enable full ICMP errors for UDP DNS sockets * resolv/res_enable_icmp.c: New file. @@ -987,6 +987,9 @@ typedef struct #define DF_1_SINGLETON 0x02000000 /* Singleton symbols are used. */ #define DF_1_STUB 0x04000000 #define DF_1_PIE 0x08000000 +#define DF_1_KMOD 0x10000000 +#define DF_1_WEAKFILTER 0x20000000 +#define DF_1_NOCOMMON 0x40000000 /* Flags for the feature selection in DT_FEATURE_1. */ #define DTF_1_PARINIT 0x00000001 |