summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-02-12 08:07:07 -0500
committerMatthias Clasen <mclasen@redhat.com>2022-06-22 11:33:20 -0400
commit67c62cc95d56af91e06d9c0f96b6a54ae5190235 (patch)
tree020d43ddc4623fc6d21f45587fdd28a6e98e51f6 /meson.build
parentbe47e7dd2c6edaff494046a1f26cdfd566acec63 (diff)
downloadpango-67c62cc95d56af91e06d9c0f96b6a54ae5190235.tar.gz
Drop PangoXft
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build10
1 files changed, 1 insertions, 9 deletions
diff --git a/meson.build b/meson.build
index d7a1168b..07cdfd61 100644
--- a/meson.build
+++ b/meson.build
@@ -230,7 +230,6 @@ fribidi_req_version = '>= 1.0.6'
libthai_req_version = '>= 0.1.9'
harfbuzz_req_version = '>= 2.6.0'
fontconfig_req_version = '>= 2.13.0'
-xft_req_version = '>= 2.0.0'
cairo_req_version = '>= 1.12.10'
# libm
@@ -356,14 +355,7 @@ if build_pangoft2
pango_deps += freetype_dep
endif
-build_pangoxft = false
-xft_dep = dependency('xft', version: xft_req_version, required: get_option('xft'))
-if xft_dep.found() and fontconfig_dep.found() and freetype_dep.found()
- pango_conf.set('HAVE_XFT', 1)
- pango_deps += dependency('xrender', required: false)
- pango_deps += xft_dep
- build_pangoxft = true
-endif
+x11_dep = dependency('x11', required: false)
has_core_text = false
if host_system == 'darwin'