diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2018-06-10 17:08:07 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-06-14 08:57:14 -0700 |
commit | 409780a7482c02553156fbae064990ef874044c6 (patch) | |
tree | a09f9bca63ef4063c0997ed38d9b2071610ccecc /meta-xfce/recipes-apps | |
parent | 3e4c440ec2889110aac4201cc8c6ee43467b523d (diff) | |
download | meta-openembedded-409780a7482c02553156fbae064990ef874044c6.tar.gz |
ristretto: fix build after update of xfconf
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-apps')
-rw-r--r-- | meta-xfce/recipes-apps/ristretto/files/0001-Fix-build-after-update-of-xfconf.patch | 40 | ||||
-rw-r--r-- | meta-xfce/recipes-apps/ristretto/ristretto_0.8.2.bb | 1 |
2 files changed, 41 insertions, 0 deletions
diff --git a/meta-xfce/recipes-apps/ristretto/files/0001-Fix-build-after-update-of-xfconf.patch b/meta-xfce/recipes-apps/ristretto/files/0001-Fix-build-after-update-of-xfconf.patch new file mode 100644 index 0000000000..5cdc8c7282 --- /dev/null +++ b/meta-xfce/recipes-apps/ristretto/files/0001-Fix-build-after-update-of-xfconf.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | From 2b6bdb860ef53975c7e866f393b61d253c00754d Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com> | ||
3 | Date: Mon, 22 Jan 2018 15:52:09 +0100 | ||
4 | Subject: [PATCH] Fix build after update of xfconf | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | xfconf stopped using dbus-glib so required flags must be included here | ||
10 | |||
11 | Upstream-Status: Pending | ||
12 | |||
13 | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> | ||
14 | --- | ||
15 | src/Makefile.am | 2 ++ | ||
16 | 1 file changed, 2 insertions(+) | ||
17 | |||
18 | diff --git a/src/Makefile.am b/src/Makefile.am | ||
19 | index 36a31dc..3dd56bc 100644 | ||
20 | --- a/src/Makefile.am | ||
21 | +++ b/src/Makefile.am | ||
22 | @@ -30,6 +30,7 @@ ristretto_CFLAGS = \ | ||
23 | $(GIO_UNIX_CFLAGS) \ | ||
24 | $(LIBEXIF_CFLAGS) \ | ||
25 | $(XFCONF_CFLAGS) \ | ||
26 | + $(DBUS_GLIB_CFLAGS) \ | ||
27 | $(EXO_CFLAGS) \ | ||
28 | $(CAIRO_CFLAGS) \ | ||
29 | $(LIBXFCE4UTIL_CFLAGS) \ | ||
30 | @@ -48,6 +49,7 @@ ristretto_LDADD = \ | ||
31 | $(GIO_UNIX_LIBS) \ | ||
32 | $(LIBEXIF_LIBS) \ | ||
33 | $(XFCONF_LIBS) \ | ||
34 | + $(DBUS_GLIB_LIBS) \ | ||
35 | $(EXO_LIBS) \ | ||
36 | $(CAIRO_LIBS) \ | ||
37 | $(LIBXFCE4UTIL_LIBS) \ | ||
38 | -- | ||
39 | 2.14.3 | ||
40 | |||
diff --git a/meta-xfce/recipes-apps/ristretto/ristretto_0.8.2.bb b/meta-xfce/recipes-apps/ristretto/ristretto_0.8.2.bb index c4baa727e5..06dd1021d0 100644 --- a/meta-xfce/recipes-apps/ristretto/ristretto_0.8.2.bb +++ b/meta-xfce/recipes-apps/ristretto/ristretto_0.8.2.bb | |||
@@ -11,5 +11,6 @@ RRECOMMENDS_${PN} += "tumbler" | |||
11 | 11 | ||
12 | SRC_URI[md5sum] = "a8d8bb6b8fa7f868cfa3ae778630946e" | 12 | SRC_URI[md5sum] = "a8d8bb6b8fa7f868cfa3ae778630946e" |
13 | SRC_URI[sha256sum] = "f8f3b77ca6fc77ddf8cff1bb52e5c5802c462663f72f324393b3a0360f6901b8" | 13 | SRC_URI[sha256sum] = "f8f3b77ca6fc77ddf8cff1bb52e5c5802c462663f72f324393b3a0360f6901b8" |
14 | SRC_URI += "file://0001-Fix-build-after-update-of-xfconf.patch" | ||
14 | 15 | ||
15 | FILES_${PN} += "${datadir}/appdata" | 16 | FILES_${PN} += "${datadir}/appdata" |