From 2df190c548e2ab19564e8070884478decdfa33c8 Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Tue, 22 Jun 2021 07:30:03 +0200 Subject: [PATCH] meson: bump minimum and maximum glib to 2.64 and 2.68 This allows us to get rid of some conditional compilation in src/util.c --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 192097d..7f2144c 100644 --- a/meson.build +++ b/meson.build @@ -97,8 +97,8 @@ test_c_args = [ '-Wno-switch-enum', '-Wtype-limits', '-Wunused-function', - '-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_58', - ' -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_66', + '-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_64', + '-DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_68', ] if get_option('buildtype') != 'plain'