diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2020-02-07 22:00:21 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2020-06-11 13:57:11 +0100 |
commit | e771bed9c29669c00763f978b6e21cf7ba49f386 (patch) | |
tree | fb34c6533833956b662fa4bb6a1535e674061072 | |
parent | 4c1c1e60b7df9c9c49adc7e4fed3b203f16ec28e (diff) | |
download | pango-e771bed9c29669c00763f978b6e21cf7ba49f386.tar.gz |
Include HarfBuzz when generating introspection data
The Pango API exposes harfbuzz types, and so we need to depend on
HarfBuzz-0.0 when generating our introspection data.
The introspection data on HarfBuzz was fixed upstream, even though the
current introspected API is not stellar.
Fixes: #458
-rw-r--r-- | pango/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/meson.build b/pango/meson.build index 41158141..11578ddf 100644 --- a/pango/meson.build +++ b/pango/meson.build @@ -136,7 +136,7 @@ if build_gir identifier_prefix: 'Pango', symbol_prefix: 'pango', export_packages: 'pango', - includes: [ 'GObject-2.0', 'cairo-1.0', ], + includes: [ 'HarfBuzz-0.0', 'GObject-2.0', 'cairo-1.0', ], header: 'pango/pango.h', install: true, extra_args: gir_args, |