mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-27 02:30:35 +00:00
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.
This commit is contained in:
parent
768975f71b
commit
e788fc4e88
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ dnl *** checks for library functions ***
|
|||
dnl *** checks for dependancy libraries ***
|
||||
|
||||
dnl GLib is required
|
||||
GLIB_REQ=2.40.0
|
||||
GLIB_REQ=2.44.0
|
||||
AC_SUBST([GLIB_REQ])
|
||||
AG_GST_GLIB_CHECK([$GLIB_REQ])
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ else
|
|||
endif
|
||||
gst_version_is_dev = gst_version_minor % 2 == 1 and gst_version_micro < 90
|
||||
|
||||
glib_req = '>= 2.40.0'
|
||||
glib_req = '>= 2.44.0'
|
||||
gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor)
|
||||
|
||||
api_version = '1.0'
|
||||
|
|
Loading…
Reference in a new issue