From: Thomas Petazzoni Date: Tue, 31 Jul 2012 18:30:04 +0000 (+0200) Subject: sysprof: add patch to fix build failures related to NT_GNU_BUILD_ID X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed7e0927f8e4c480b3efde9928fb886f47d36b85;p=buildroot.git sysprof: add patch to fix build failures related to NT_GNU_BUILD_ID Signed-off-by: Thomas Petazzoni --- diff --git a/package/sysprof/sysprof-02-define-NT_GNU_BUILD_ID.patch b/package/sysprof/sysprof-02-define-NT_GNU_BUILD_ID.patch new file mode 100644 index 0000000000..dcc2cbe67c --- /dev/null +++ b/package/sysprof/sysprof-02-define-NT_GNU_BUILD_ID.patch @@ -0,0 +1,22 @@ +On uclibc elf.h does not have GNU extentions but we need this define +so we define it locally if its not getting it from elf.h + +Signed-off-by: Khem Raj + +Upstream-Status: Pending + +Index: git/elfparser.h +=================================================================== +--- git.orig/elfparser.h 2011-07-16 18:57:41.000000000 -0700 ++++ git/elfparser.h 2011-07-16 20:28:54.733829895 -0700 +@@ -17,6 +17,10 @@ + */ + #include + ++#ifndef NT_GNU_BUILD_ID ++#define NT_GNU_BUILD_ID 3 ++#endif ++ + typedef struct ElfSym ElfSym; + typedef struct ElfParser ElfParser; +