From f3d115101ec6fbd67876797d5ac5a627df448ebc Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Tue, 24 May 2022 13:34:09 -0500 Subject: Add the dependencies for at-spi2-atk Notably, we make the libxml2 dependency *not* optional; it was never made optional for the tests. --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 941b31ba..053bf974 100644 --- a/meson.build +++ b/meson.build @@ -120,8 +120,10 @@ endif libdbus_req_version = '>= 1.5' glib_req_version = '>= 2.62.0' gobject_req_version = '>= 2.0.0' +gmodule_req_version = '>= 2.0.0' gio_req_version = '>= 2.28.0' gir_req_version = '>= 0.6.7' +libxml_req_version = '>= 2.9.1' libdbus_dep = dependency('dbus-1', version: libdbus_req_version) glib_dep = dependency('glib-2.0', version: glib_req_version) @@ -134,6 +136,8 @@ elif cc.has_function('dlopen', args: '-ldl') else error('Could not find a library with the dlopen function') endif +gmodule_dep = dependency('gmodule-2.0', version: gmodule_req_version) +libxml_dep = dependency('libxml-2.0', version: libxml_req_version) x11_deps = [] x11_option = get_option('x11') -- cgit v1.2.1