summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-05-25 14:56:07 +0800
committerKhem Raj <raj.khem@gmail.com>2023-05-25 08:57:47 -0700
commitaf46875f2acece2d7e691777bb1a2382900bbc5d (patch)
tree508bce5949daa128688a27f5fbff5ae3e9e97c79
parent43a206b817c2f81f8127b766ce34315001f0ccaa (diff)
downloadmeta-openembedded-af46875f2acece2d7e691777bb1a2382900bbc5d.tar.gz
dbus-cxx: upgrade 2.3.1 -> 2.4.0
0001-Include-missing-cstdint.patch removed since it's included in 2.4.0 Changelog: ========== - Add ability to switch between big/little endianess for messages. This is to support implementations such as sd-bus where handling perfectly valid messages in big-endian format is apparently too difficult - Fix extracting certain deeply nested messages with maps - Various other compile fixes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.4.0.bb (renamed from meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.3.1.bb)5
-rw-r--r--meta-oe/recipes-core/dbus-cxx/files/0001-Include-missing-cstdint.patch30
2 files changed, 2 insertions, 33 deletions
diff --git a/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.3.1.bb b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.4.0.bb
index 7af62b7418..6294827b18 100644
--- a/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.3.1.bb
+++ b/meta-oe/recipes-core/dbus-cxx/dbus-cxx_2.4.0.bb
@@ -5,9 +5,8 @@ SECTION = "base"
5LICENSE = "LGPL-3.0-or-later | BSD-3-Clause" 5LICENSE = "LGPL-3.0-or-later | BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308" 6LIC_FILES_CHKSUM = "file://COPYING;md5=24594f493407a4cd401ce9794e0b9308"
7 7
8SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https \ 8SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https"
9 file://0001-Include-missing-cstdint.patch" 9SRCREV = "ebac3df5beeb4337f65968ae5b265927abb792af"
10SRCREV = "898f6ea8f7ffe454e81a9337002df555728d4199"
11 10
12DEPENDS = "\ 11DEPENDS = "\
13 dbus \ 12 dbus \
diff --git a/meta-oe/recipes-core/dbus-cxx/files/0001-Include-missing-cstdint.patch b/meta-oe/recipes-core/dbus-cxx/files/0001-Include-missing-cstdint.patch
deleted file mode 100644
index 4ad69eab42..0000000000
--- a/meta-oe/recipes-core/dbus-cxx/files/0001-Include-missing-cstdint.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From 56e2cce87445d514c9992ecc19d03bb2115c82d6 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 25 Jan 2023 22:17:31 -0800
4Subject: [PATCH] Include missing <cstdint>
5
6gcc 13 moved some includes around and as a result <cstdint> is no longer transitively included [1]. Explicitly include it for uint{32,64}_t.
7
8[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
9
10Upstream-Status: Submitted [https://github.com/dbus-cxx/dbus-cxx/pull/111]
11Signed-off-by: Khem Raj <raj.khem@gmail.com>
12---
13 dbus-cxx/enums.h | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/dbus-cxx/enums.h b/dbus-cxx/enums.h
17index 8253a4b..c793fad 100644
18--- a/dbus-cxx/enums.h
19+++ b/dbus-cxx/enums.h
20@@ -5,6 +5,7 @@
21 * *
22 * This file is part of the dbus-cxx library. *
23 ***************************************************************************/
24+#include <cstdint>
25 #include <ostream>
26
27 #ifndef DBUSCXX_ENUMS_H
28--
292.39.1
30