From: Руслан Ижбулатов Date: Wed, 11 Apr 2018 16:43:27 +0000 (+0000) Subject: Link libgtk to libintl X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1^2~18^2~22^2~353^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8c3ee6a38d8b5086af9c8b2eb8b3d0015e428461;p=gtk4.git 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. --- 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',