From 6bd73861ca40abc60c876101fcfa16232977a492 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Fri, 31 May 2019 23:43:46 +0200 Subject: [PATCH] meson: Bump minimal GLib version to 2.44 This means we can use some newer features and get rid of some boilerplate code using the G_DECLARE_* macros. As discussed on IRC, 2.44 is old enough by now to start depending on it. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 51f094b499..383154477d 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project('All GStreamer modules', 'c', gst_version = '>= @0@'.format(meson.project_version()) gst_branch = 'master' -glib_req = '>= 2.40.0' +glib_req = '>= 2.44.0' build_system = build_machine.system() cc = meson.get_compiler('c')