summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-06-27 17:08:52 -0400
committerMatthias Clasen <mclasen@redhat.com>2022-07-04 11:17:28 -0400
commite1aee36d08f1598c5c2435d56632cd3ef67f2569 (patch)
tree5a53f47886f43537e144b50aae7ee5d6300e308d
parent0026ab3c4987be1830e5e4dd3f51479f23adf642 (diff)
downloadpango-e1aee36d08f1598c5c2435d56632cd3ef67f2569.tar.gz
build: Cosmetics
-rw-r--r--meson.build3
1 files changed, 0 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 24a220b6..8c9399d7 100644
--- a/meson.build
+++ b/meson.build
@@ -331,17 +331,14 @@ endif
if get_option('cairo').disabled()
cairo_dep = disabler()
cairo_xlib_dep = disabler()
- cairo_ft_dep = disabler()
else
cairo_dep = dependency(cairo_pkg, version: cairo_req_version,
fallback: ['cairo', 'libcairo_dep'], required: get_option('cairo'))
cairo_xlib_dep = dependency('cairo-xlib', required: false)
- cairo_ft_dep = dependency('cairo-ft', required: false)
endif
pango_conf.set('HAVE_CAIRO', cairo_dep.found ())
pango_conf.set('HAVE_CAIRO_XLIB', cairo_dep.found() and cairo_xlib_dep.found())
-pango_conf.set('HAVE_CAIRO_FT', cairo_dep.found() and cairo_xlib_dep.found())
if cairo_dep.found()
pango_deps += cairo_dep