diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-02-15 22:50:06 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-02-15 22:50:06 -0500 |
commit | 846e7fb26040edc0ab55be002bd3694625e3eb50 (patch) | |
tree | 026286779fa440d18a68646457859800d1e7874a /pango/meson.build | |
parent | fb19dd4a8c9735d381d79adf16c142c4d025749c (diff) | |
download | pango-846e7fb26040edc0ab55be002bd3694625e3eb50.tar.gz |
Leave pango-version-macros.h out of the girgir-fixes
PANGO_VERSION_MIN_REQUIRED is a build utility, and
is not useful as a constant in the gir. Leave it out.
Diffstat (limited to 'pango/meson.build')
-rw-r--r-- | pango/meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pango/meson.build b/pango/meson.build index 388d4588..777f5374 100644 --- a/pango/meson.build +++ b/pango/meson.build @@ -54,10 +54,11 @@ pango_headers = [ 'pango-tabs.h', 'pango-types.h', 'pango-utils.h', - 'pango-version-macros.h', ] -install_headers(pango_headers, subdir: pango_api_path) +pango_installed_headers = pango_headers + [ 'pango-version-macros.h' ] + +install_headers(pango_installed_headers, subdir: pango_api_path) # Features header pango_features_conf = configuration_data() |