summaryrefslogtreecommitdiffstats
path: root/recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch
diff options
context:
space:
mode:
authorChanghyeok Bae <changhyeok.bae@gmail.com>2017-06-01 07:46:15 +0000
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-09-06 13:26:25 +0200
commit23237f85ab7553403b69a003c0e8f418e9df6a1d (patch)
tree624f5c5b04bcfdd5fc7e085259bce9090d41add3 /recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch
parent199f3d33307b86420dc5f127614d91914c56fab1 (diff)
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 <changhyeok.bae@gmail.com>
Diffstat (limited to 'recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch')
-rw-r--r--recipes-core/dbus/libdbus-c++-0.9.0/0002-tools-generate_proxy.cpp-avoid-possibly-undefined-ui.patch58
1 files changed, 0 insertions, 58 deletions
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 <peter@newton.cx>
-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 <adraszik@tycoint.com>
- 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 <uint> (i);
-+ arg_name += toString <unsigned int> (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 <uint> (i);
-+ arg_name = "argout" + toString <unsigned int> (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 <uint> (i);
-+ arg_name = "arg" + toString <unsigned int> (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 <uint> (j);
-+ arg_name = "arg" + toString <unsigned int> (j);
- }
-
- if (arg_object.length())
---
-2.10.2
-