From e2e6f6fe07049f33cb6348780fa975162752e421 Mon Sep 17 00:00:00 2001 From: Adrian Dudau Date: Thu, 12 Dec 2013 13:38:32 +0100 Subject: initial commit of Enea Linux 3.1 Migrated from the internal git server on the dora-enea branch Signed-off-by: Adrian Dudau --- .../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-54-g00ecf