[libchamplain: 4/8] meson: Add missing gdk required dependency for champlain
- From: Jiří Techet <jiritechet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libchamplain: 4/8] meson: Add missing gdk required dependency for champlain
- Date: Tue, 23 Apr 2019 17:57:12 +0000 (UTC)
commit 17348668f16857296ac2caf32c4a503f1946e1a5
Author: Mart Raudsepp <leio gentoo org>
Date: Mon Apr 22 15:03:06 2019 +0300
meson: Add missing gdk required dependency for champlain
gdk/gdk.h header is included and gdk_cairo_set_source_pixbuf symbol
is used from gdk, thus we need its header include path and link to it.
If clutter is built with gtk support, this is implicitly included via
clutter-1.0 dep, but it can also be built without gtk support, in
which case the build of libchamplain fails due to no gdk/gdk.h header
found.
champlain/meson.build | 1 +
meson.build | 1 +
2 files changed, 2 insertions(+)
---
diff --git a/champlain/meson.build b/champlain/meson.build
index 3285c65..0bf8ba5 100644
--- a/champlain/meson.build
+++ b/champlain/meson.build
@@ -95,6 +95,7 @@ libchamplain_requires = [
libchamplain_deps = libchamplain_requires + [
libm_dep,
gio_dep,
+ gdk_dep,
sqlite_dep,
libsoup_dep,
]
diff --git a/meson.build b/meson.build
index 43e72e5..1e571c5 100644
--- a/meson.build
+++ b/meson.build
@@ -66,6 +66,7 @@ gtk_doc_req = '>= 1.15'
glib_dep = dependency('glib-2.0', version: glib_req)
gobject_dep = dependency('gobject-2.0', version: glib_req)
gio_dep = dependency('gio-2.0', version: glib_req)
+gdk_dep = dependency('gdk-3.0', version: gtk_req)
clutter_dep = dependency('clutter-1.0', version: clutter_req)
cairo_dep = dependency('cairo', version: cairo_req)
sqlite_dep = dependency('sqlite3', version: sqlite_req)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]