summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <corentin@elementary.io>2020-09-09 22:58:26 +0200
committerCorentin Noël <corentin@elementary.io>2020-09-09 22:58:26 +0200
commitdfed87c8bcf89e22cc8e580beba48bf58e959246 (patch)
tree9d45a59c6cda115cabbb123f06dd57701aee3bf4
parent9b3a74c3dc1e9ec16501ab83d368e38a6efd0afd (diff)
downloadglade-wip/tintou/glib-min.tar.gz
Require GLib >= 2.62wip/tintou/glib-min
g_clear_signal_handler has been introduced in GLib 2.62 and is used in the code.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index a91a790d..e073fa39 100644
--- a/meson.build
+++ b/meson.build
@@ -110,7 +110,7 @@ endif
add_project_arguments(common_flags, language: 'c')
# Check required libraries
-glib_dep = dependency('glib-2.0', version: '>= 2.53.2')
+glib_dep = dependency('glib-2.0', version: '>= 2.62')
gmodule_dep = dependency('gmodule-2.0')
gmodule_export_dep = dependency('gmodule-export-2.0')
gtk_dep = dependency('gtk+-3.0', version: '>= 3.24.0')