From: Niels De Graef Date: Fri, 31 May 2019 21:13:48 +0000 (+0200) Subject: meson: Bump minimal GLib version to 2.44 X-Git-Tag: 1.19.3~493^2~482 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f238144bf2660fba55946251e94778c752136f2;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 bb9d29a..a95153b 100644 --- a/configure.ac +++ b/configure.ac @@ -191,7 +191,7 @@ dnl *** checks for headers *** dnl *** checks for dependency libraries *** dnl GLib is required -AG_GST_GLIB_CHECK([2.40.0]) +AG_GST_GLIB_CHECK([2.44.0]) PKG_CHECK_MODULES(GIO, gio-2.0 >= 2.16, HAVE_GIO=yes, HAVE_GIO=no) AC_SUBST(GIO_CFLAGS) diff --git a/meson.build b/meson.build index d928c9b..4c26a8d 100644 --- a/meson.build +++ b/meson.build @@ -25,7 +25,7 @@ curversion = gst_version_minor * 100 + gst_version_micro libversion = '@0@.@1@.0'.format(soversion, curversion) osxversion = curversion + 1 -glib_req = '>= 2.40.0' +glib_req = '>= 2.44.0' gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor) cc = meson.get_compiler('c')