From db7c1180b39235e646051084b3df440a020cd699 Mon Sep 17 00:00:00 2001 From: Havard Graff Date: Mon, 11 Dec 2017 12:33:24 +1100 Subject: [PATCH] meson: add libintl when linking gio-tests on OSX https://bugzilla.gnome.org/show_bug.cgi?id=791460 --- gio/tests/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gio/tests/meson.build b/gio/tests/meson.build index 21b0c2a6c..b5399f06a 100644 --- a/gio/tests/meson.build +++ b/gio/tests/meson.build @@ -1,5 +1,9 @@ common_gio_tests_deps = [libglib_dep, libgmodule_dep, libgobject_dep, libgio_dep] +if host_system == 'darwin' +common_gio_tests_deps += [libintl] +endif + subdir('gdbus-object-manager-example') gengiotypefuncs_prog = find_program('gengiotypefuncs.py')