From: Niels De Graef Date: Mon, 3 Jun 2019 05:57:02 +0000 (+0200) Subject: meson: Bump minimal GLib version to 2.44 X-Git-Tag: 1.19.3~501^2~73 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0b9c96f48a73740433f29eec9184c4dc5a328e7;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/configure.ac b/configure.ac index 331b9d2..e9747df 100644 --- a/configure.ac +++ b/configure.ac @@ -137,7 +137,7 @@ AG_GST_CHECK_FUNCTION dnl *** checks for dependency libraries *** dnl GLib is required -AG_GST_GLIB_CHECK([2.40.0]) +AG_GST_GLIB_CHECK([2.44.0]) dnl Needed by plugins that use g_module_*() API PKG_CHECK_MODULES(GMODULE_NO_EXPORT, gmodule-no-export-2.0) diff --git a/meson.build b/meson.build index 1bd8a70..dbc9680 100644 --- a/meson.build +++ b/meson.build @@ -15,7 +15,7 @@ else gst_version_nano = 0 endif -glib_req = '>= 2.40.0' +glib_req = '>= 2.44.0' gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor) tizil_req = '>= 0.1.0' api_version = '1.0'