From ac969fffa287dc67d3e3c78cbb28a34b48bafa05 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Tue, 24 Jan 2023 19:06:15 -0500 Subject: [PATCH] Update meson summary Include builtin font callbacks and Cairo integration in the configuration summary. --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 60b90589b..07ed493fb 100644 --- a/meson.build +++ b/meson.build @@ -396,7 +396,8 @@ build_summary = { 'ICU': conf.get('HAVE_ICU', 0) == 1, }, 'Font callbacks (the more the merrier)': - {'FreeType': conf.get('HAVE_FREETYPE', 0) == 1, + {'Builtin' : true, + 'FreeType': conf.get('HAVE_FREETYPE', 0) == 1, }, 'Dependencies used for command-line utilities': {'Cairo': conf.get('HAVE_CAIRO', 0) == 1, @@ -413,6 +414,7 @@ build_summary = { 'Other features': {'Documentation': conf.get('HAVE_GTK_DOC', 0) == 1, 'GObject bindings': conf.get('HAVE_GOBJECT', 0) == 1, + 'Cairo integration': conf.get('HAVE_CAIRO', 0) == 1, 'Introspection': conf.get('HAVE_INTROSPECTION', 0) == 1, 'Experimental APIs': conf.get('HB_EXPERIMENTAL_API', 0) == 1, },