diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-12-16 21:38:51 +0100 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-12-17 10:00:52 -0500 |
commit | 21320fb2ea2ea7d16d7a20e0d9e97e4f2fae2480 (patch) | |
tree | 269552f533e0760ff3688244f329c7bc6968adc9 /sys-libs/uclibc-ng | |
parent | dev-libs/newt: restrict tests (diff) | |
download | gentoo-21320fb2ea2ea7d16d7a20e0d9e97e4f2fae2480.tar.gz gentoo-21320fb2ea2ea7d16d7a20e0d9e97e4f2fae2480.tar.bz2 gentoo-21320fb2ea2ea7d16d7a20e0d9e97e4f2fae2480.zip |
sys-libs/uclibc-ng: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'sys-libs/uclibc-ng')
-rw-r--r-- | sys-libs/uclibc-ng/files/uclibc-ng-1.0.30-fix-ld.so.cache.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/sys-libs/uclibc-ng/files/uclibc-ng-1.0.30-fix-ld.so.cache.patch b/sys-libs/uclibc-ng/files/uclibc-ng-1.0.30-fix-ld.so.cache.patch deleted file mode 100644 index 6b13e0890d25..000000000000 --- a/sys-libs/uclibc-ng/files/uclibc-ng-1.0.30-fix-ld.so.cache.patch +++ /dev/null @@ -1,48 +0,0 @@ -commit 92d250d387e247029900c9074150f45866b29781 -Author: Waldemar Brodkorb <wbx@openadk.org> -Date: Sun Apr 29 19:34:11 2018 +0200 - - Revert "ldconfig: add glibc compatibility fix" - - This reverts commit 2a3bb4daf5778c5875674cd26a3c75b3d460a042. - - This is breaking ld.so.cache usage. Seen on Gentoo/amd64. - - Reported-by: "Anthony G. Basile" <basile@freeharbor.net> - -diff --git a/utils/ldconfig.c b/utils/ldconfig.c -index 58939d689..e6b788118 100644 ---- a/utils/ldconfig.c -+++ b/utils/ldconfig.c -@@ -184,9 +184,10 @@ static char *readsoname(char *name, FILE *infile, int expected_type, - res = readsoname32(name, infile, expected_type, type); - else { - res = readsoname64(name, infile, expected_type, type); -- -- // For 64-bit glibc compatibility -- *type |= FLAG_X8664_LIB64; -+#if 0 -+ /* relies on multilib support which we dont have ... */ -+ *type |= LIB_ELF64; -+#endif - } - - return res; -@@ -757,7 +758,7 @@ void cache_print(void) - - for (fd = 0; fd < header->nlibs; fd++) { - printf("\t%s ", strs + libent[fd].sooffset); -- switch (libent[fd].flags & ~LIB_ELF64 & FLAG_TYPE_MASK) { -+ switch (libent[fd].flags & ~LIB_ELF64) { - case LIB_DLL: - printf("(libc4)"); - break; -@@ -770,7 +771,7 @@ void cache_print(void) - case LIB_ELF_LIBC5: - case LIB_ELF_LIBC6: - printf("(libc%d%s)", -- (libent[fd].flags & ~LIB_ELF64 & FLAG_TYPE_MASK) + 3, -+ (libent[fd].flags & ~LIB_ELF64) + 3, - libent[fd].flags & LIB_ELF64 ? "/64" : ""); - break; - default: |