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.
This commit is contained in:
Руслан Ижбулатов 2018-04-11 16:43:27 +00:00
parent 20f12f9ed7
commit 8c3ee6a38d

View File

@ -919,6 +919,10 @@ if cloudproviders_enabled
gtk_deps += cloudproviders_dep gtk_deps += cloudproviders_dep
endif endif
# Unconditional. If libintl isn't found,
# the object just does nothing being in the deplist
gtk_deps += libintl_dep
gtk_settings_schemas = [ gtk_settings_schemas = [
'org.gtk.Settings.FileChooser.gschema.xml', 'org.gtk.Settings.FileChooser.gschema.xml',
'org.gtk.Settings.ColorChooser.gschema.xml', 'org.gtk.Settings.ColorChooser.gschema.xml',