summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2019-09-10 20:10:58 +0300
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2019-09-10 20:10:58 +0300
commit74e0c20bcc9aba38636364d162e9b7daa225a003 (patch)
tree9533915407c431ddf8773cf853f8dde814f06da3
parentb7bacc30da3091fb78a6aba4e9bcdd2be19ef598 (diff)
downloadlibwnck-74e0c20bcc9aba38636364d162e9b7daa225a003.tar.gz
build: bump GLib required version to 2.34
Commit 7ea3203f5459e206d0d15fe115cb08a54772cd43 uses g_clear_pointer that was added in glib 2.34: https://gitlab.gnome.org/GNOME/glib/commit/00285b7517a63a243a5b61b73 https://gitlab.gnome.org/GNOME/libwnck/merge_requests/10#note_600118
-rw-r--r--configure.ac2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index b6353dd..981e4ff 100644
--- a/configure.ac
+++ b/configure.ac
@@ -147,7 +147,7 @@ AC_SUBST(XLIB_LIBS)
PKG_CHECK_MODULES([LIBWNCK],[
gtk+-3.0 >= 3.22.0
- glib-2.0 >= 2.32
+ glib-2.0 >= 2.34
gobject-2.0 >= 2.13.0
$CAIRO_XLIB_XRENDER_PACKAGE
$STARTUP_NOTIFICATION_PACKAGE
diff --git a/meson.build b/meson.build
index 047e523..cf92eb7 100644
--- a/meson.build
+++ b/meson.build
@@ -40,7 +40,7 @@ XRES_PACKAGE = 'xres'
pkg_deps = [
{'name': 'cairo-xlib-xrender', 'required': false},
- {'name': 'glib-2.0', 'version': '>= 2.32' },
+ {'name': 'glib-2.0', 'version': '>= 2.34' },
{'name': 'gobject-2.0', 'version': '>= 2.13.0' },
{'name': 'gtk+-3.0', 'version': '>= 3.22.0' },
{'name': STARTUP_NOTIFICATION_PACKAGE, 'version': '>= 0.4', 'required': get_option('startup_notification')},