meson: Bump minimal GLib version to 2.44
authorNiels De Graef <niels.degraef@barco.com>
Fri, 31 May 2019 21:02:53 +0000 (23:02 +0200)
committerNicolas Dufresne <nicolas@ndufresne.ca>
Mon, 3 Jun 2019 16:18:51 +0000 (16:18 +0000)
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.

configure.ac
meson.build

index 6ca42d8..66f068e 100644 (file)
@@ -269,7 +269,7 @@ AG_GST_CHECK_FUNCTION
 dnl *** checks for dependency libraries ***
 
 dnl GLib
-GLIB_REQ=2.40.0
+GLIB_REQ=2.44.0
 AG_GST_GLIB_CHECK([$GLIB_REQ])
 
 ORC_CHECK([0.4.24])
index 91be429..f63b721 100644 (file)
@@ -19,7 +19,7 @@ gst_version_is_dev = gst_version_minor % 2 == 1 and gst_version_micro < 90
 have_cxx = add_languages('cpp', required : false)
 have_objc = add_languages('objc', required : false)
 
-glib_req = '>= 2.40.0'
+glib_req = '>= 2.44.0'
 orc_req = '>= 0.4.24'
 gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor)