From 8c3ee6a38d8b5086af9c8b2eb8b3d0015e428461 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: Wed, 11 Apr 2018 16:43:27 +0000 Subject: [PATCH] Link libgtk to libintl GTK does use libintl directly (in gtkmain.c, for example) and thus needs to be linked to it (if found and/or needed). Previously we most likely were getting libintl from glib, but that stopped for some reason. Either way, explicit linking is the right thing to do here. --- gtk/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/meson.build b/gtk/meson.build index 075cc9069f..b4555b2e80 100644 --- a/gtk/meson.build +++ b/gtk/meson.build @@ -919,6 +919,10 @@ if cloudproviders_enabled gtk_deps += cloudproviders_dep endif +# Unconditional. If libintl isn't found, +# the object just does nothing being in the deplist +gtk_deps += libintl_dep + gtk_settings_schemas = [ 'org.gtk.Settings.FileChooser.gschema.xml', 'org.gtk.Settings.ColorChooser.gschema.xml',