summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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