mirror of
https://git.yoctoproject.org/poky
synced 2026-02-16 05:33:03 +01:00
New version uses Gtk+3. 3.20 release requires a bunch of fixes to build without polkit, this git revision inclues those fixes. * Add patch to use proper U64_TO_POINTER macro to fix build on 32 bit platforms. * Forward port memory barrier patches for arm & mips * sysprof builds with loads of warnings and git builds also use -Werror: avoid that by setting "--enable-compile-warnings" (From OE-Core rev: ab2d5e397d30999929108c9d929767205fee9db4) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
602 B
Diff
23 lines
602 B
Diff
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 <raj.khem@gmail.com>
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Index: git/elfparser.h
|
|
===================================================================
|
|
--- git.orig/lib/util/elfparser.h 2011-07-16 18:57:41.000000000 -0700
|
|
+++ git/lib/util/elfparser.h 2011-07-16 20:28:54.733829895 -0700
|
|
@@ -17,6 +17,10 @@
|
|
*/
|
|
#include <glib.h>
|
|
|
|
+#ifndef NT_GNU_BUILD_ID
|
|
+#define NT_GNU_BUILD_ID 3
|
|
+#endif
|
|
+
|
|
typedef struct ElfSym ElfSym;
|
|
typedef struct ElfParser ElfParser;
|
|
|