diff options
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/libgdbus/libgdbus/fix-for-new-glib.patch | 20 | ||||
-rw-r--r-- | meta/recipes-support/libgdbus/libgdbus_git.bb | 5 |
2 files changed, 23 insertions, 2 deletions
diff --git a/meta/recipes-support/libgdbus/libgdbus/fix-for-new-glib.patch b/meta/recipes-support/libgdbus/libgdbus/fix-for-new-glib.patch new file mode 100644 index 0000000000..4bd836062f --- /dev/null +++ b/meta/recipes-support/libgdbus/libgdbus/fix-for-new-glib.patch | |||
@@ -0,0 +1,20 @@ | |||
1 | Fix for glib-2.0 version 2.32.2 | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | |||
5 | Signed-off-by: Saul Wold <sgw@linux.intel.com> | ||
6 | |||
7 | |||
8 | Index: git/src/debug.h | ||
9 | =================================================================== | ||
10 | --- git.orig/src/debug.h | ||
11 | +++ git/src/debug.h | ||
12 | @@ -19,7 +19,7 @@ | ||
13 | * | ||
14 | */ | ||
15 | |||
16 | -#include <glib/gmessages.h> | ||
17 | +#include <glib.h> | ||
18 | |||
19 | //#define DBG(fmt, arg...) g_debug("%s: " fmt, __FUNCTION__ , ## arg) | ||
20 | #define DBG(fmt, arg...) | ||
diff --git a/meta/recipes-support/libgdbus/libgdbus_git.bb b/meta/recipes-support/libgdbus/libgdbus_git.bb index 67c61cf3dc..474ec2852d 100644 --- a/meta/recipes-support/libgdbus/libgdbus_git.bb +++ b/meta/recipes-support/libgdbus/libgdbus_git.bb | |||
@@ -10,9 +10,10 @@ DEPENDS = "glib-2.0 dbus" | |||
10 | 10 | ||
11 | SRCREV = "aeab6e3c0185b271ca343b439470491b99cc587f" | 11 | SRCREV = "aeab6e3c0185b271ca343b439470491b99cc587f" |
12 | PV = "0.0+git${SRCPV}" | 12 | PV = "0.0+git${SRCPV}" |
13 | PR = "r0" | 13 | PR = "r1" |
14 | 14 | ||
15 | SRC_URI = "git://git.kernel.org/pub/scm/bluetooth/libgdbus.git;protocol=git" | 15 | SRC_URI = "git://git.kernel.org/pub/scm/bluetooth/libgdbus.git;protocol=git \ |
16 | file://fix-for-new-glib.patch" | ||
16 | 17 | ||
17 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
18 | 19 | ||