summaryrefslogtreecommitdiff
path: root/finch
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2022-09-28 05:44:45 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2022-09-28 05:44:45 -0500
commit7d2c125a7432cf2e522c2c3245edd1482ad06e45 (patch)
tree96952434d874c0db97848d729a0b2c7975e9a72d /finch
parent9e98bf7af965a58a55618b00296981220c4e3795 (diff)
downloadpidgin-7d2c125a7432cf2e522c2c3245edd1482ad06e45.tar.gz
Fix Finch->Gnt gir dependency
This is copied from how Pidgin uses Talkatu. Testing Done: Compiled and saw fewer undefined types in gir step (but an added 'missing' pkgconfig file since I'm using a subproject.) Reviewed at https://reviews.imfreedom.org/r/1854/
Diffstat (limited to 'finch')
-rw-r--r--finch/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/finch/meson.build b/finch/meson.build
index 1165a2e6c0..b2e44d69b9 100644
--- a/finch/meson.build
+++ b/finch/meson.build
@@ -199,16 +199,16 @@ if enable_consoleui
libfinch_gir = gnome.generate_gir(libfinch,
sources : introspection_sources,
- includes : ['GLib-2.0', 'GModule-2.0', 'GObject-2.0', libpurple_gir[0]],
+ header : 'finch.h',
+ includes : ['GLib-2.0', 'GModule-2.0', 'GObject-2.0', libpurple_gir[0], 'Gnt-3.0'],
namespace : 'Finch',
symbol_prefix : 'finch',
- header : 'finch.h',
identifier_prefix : 'Finch',
export_packages : 'finch-3',
nsversion : '@0@.@1@'.format(purple_major_version,
purple_minor_version),
- install : true,
dependencies: [libgnt_dep, gplugin_dep, libpurple_dep],
+ install : true,
extra_args : ['-DFINCH_COMPILATION', '--quiet'])
libfinch_generated_sources += libfinch_gir
endif