From 23237f85ab7553403b69a003c0e8f418e9df6a1d Mon Sep 17 00:00:00 2001 From: Changhyeok Bae Date: Thu, 1 Jun 2017 07:46:15 +0000 Subject: Upgrade to pyro wayland-ivi-extension: Arrange recipe - Remove unecessary variable in PACKAGECONFIG - Arrange test-path.patch to upgrade wayland-ivi-extension qtbase: Fix build error due to binutils 2.28 bug - gold linker from binutils 2.28 may produce duplicate library symbols, which makes shared libraries created with it not usable with conventional ld linker. - See https://bugs.freebsd.org/bugzilla/attachment.cgi?id=183069&action=diff weston: Change recipe version libdbus-c++: Remove recipe and add bbappend file - meta-openembedded (pyro) already has same version. - Remove PNBLACKLIST[libdbus-c++] to use this component. packagegroups / agl-demo.inc : - move inclusion of qtwebkit out of agl-demo.inc into packagegroup-agl-demo - this fixes an inclusion bug Bug-AGL: SPEC-646 Change-Id: Ia71d5f4dc881f0d8f8f24a5574c9efc0f2da6245 Signed-off-by: Changhyeok Bae --- ...ate_proxy.cpp-avoid-possibly-undefined-ui.patch | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch (limited to 'recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch') diff --git a/recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch b/recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch deleted file mode 100644 index 65cd9397..00000000 --- a/recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch +++ /dev/null @@ -1,58 +0,0 @@ -From c673a76857cbe0ca82fa11aea9b70f94c3e5b041 Mon Sep 17 00:00:00 2001 -From: Peter Williams -Date: Sat, 19 Dec 2015 21:08:46 -0500 -Subject: [PATCH] tools/generate_proxy.cpp: avoid possibly undefined 'uint' - type -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - ---- -Upstream-Status: Backport [https://github.com/andreas-volz/dbus-cplusplus/commit/43f119a2b3fe951c0f1d88cc61170d4c81a88880] -Signed-off-by: André Draszik - tools/generate_proxy.cpp | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/tools/generate_proxy.cpp b/tools/generate_proxy.cpp -index bf1094a..ebb75fa 100644 ---- a/tools/generate_proxy.cpp -+++ b/tools/generate_proxy.cpp -@@ -352,7 +352,7 @@ void generate_proxy(Xml::Document &doc, const char *filename) - if (!arg_name.length()) - { - arg_name = "argin"; -- arg_name += toString (i); -+ arg_name += toString (i); - } - - // generate extra code to wrap object -@@ -445,7 +445,7 @@ void generate_proxy(Xml::Document &doc, const char *filename) - - if (!arg_name.length()) - { -- arg_name = "argout" + toString (i); -+ arg_name = "argout" + toString (i); - } - - if (arg_object.length()) -@@ -569,7 +569,7 @@ void generate_proxy(Xml::Document &doc, const char *filename) - // use a default if no arg name given - if (!arg_name.length()) - { -- arg_name = "arg" + toString (i); -+ arg_name = "arg" + toString (i); - } - - body << arg_name << ";" << endl; -@@ -605,7 +605,7 @@ void generate_proxy(Xml::Document &doc, const char *filename) - - if (!arg_name.length()) - { -- arg_name = "arg" + toString (j); -+ arg_name = "arg" + toString (j); - } - - if (arg_object.length()) --- -2.10.2 - -- cgit 1.2.3-korg