From 24e80aac1fafd5d634017ed879bcc31b9938a75d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?= =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= Date: Tue, 10 Apr 2018 22:46:53 +0000 Subject: [PATCH] Link gdatetime test to libintl gdatetime testcase uses glib (which uses libintl), but *alsi* calls libintl functions on its own, as part of the testing process. Therefore it must be linked to libintl like any other program that uses it. https://bugzilla.gnome.org/show_bug.cgi?id=794556 --- glib/tests/meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/glib/tests/meson.build b/glib/tests/meson.build index f6ab18569..c32e7768f 100644 --- a/glib/tests/meson.build +++ b/glib/tests/meson.build @@ -111,6 +111,9 @@ foreach test_name : glib_tests if test_name == 'regex' deps += [pcre] endif + if test_name == 'gdatetime' + deps += [libintl] + endif exe = executable(test_name, '@0@.c'.format(test_name), c_args : ['-DPCRE_STATIC'] + test_cargs, dependencies : deps,