From 6edbaf14f875b7759672e8d118c59a01dbdeb853 Mon Sep 17 00:00:00 2001 From: Radu Moisan Date: Wed, 19 Jun 2013 12:12:09 +0300 Subject: elfutils: Upgrade to v0.155 *license changed to GPLv3 *several patches were absolete so I removed them *redhat-portability & redhat-robustify backported from latest elfutils-portability & elfutils-robustify from upstream Signed-off-by: Radu Moisan Signed-off-by: Saul Wold --- .../elfutils/elfutils-0.155/mempcpy.patch | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch (limited to 'meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch') diff --git a/meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch b/meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch new file mode 100644 index 0000000000..1d5a37e8f5 --- /dev/null +++ b/meta/recipes-devtools/elfutils/elfutils-0.155/mempcpy.patch @@ -0,0 +1,24 @@ + +uclibc does not export __mempcpy like glibc so we alias it here. +This patch may make sense for upstream but elfutils uses more +glibc specific features like obstack_printf which are missing in +uclibc they need to be fixed along to make it work all the way + +Upstream-Status: Inappropriate[Elfutils uses more glibc specific features] + +Signed-off-by: Khem Raj + +Index: elfutils-0.155/libelf/elf_begin.c +=================================================================== +--- elfutils-0.155.orig/libelf/elf_begin.c ++++ elfutils-0.155/libelf/elf_begin.c +@@ -68,6 +68,9 @@ + #include "libelfP.h" + #include "common.h" + ++#ifdef __UCLIBC__ ++#define __mempcpy mempcpy ++#endif + + /* Create descriptor for archive in memory. */ + static inline Elf * -- cgit v1.2.3