summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2021-03-30 13:18:27 -0700
committerChristian Hergert <chergert@redhat.com>2021-03-30 13:18:27 -0700
commitdd7ce2e1ace05333192226690dac73050433db5e (patch)
treeb089206a29071a16c9dac4bb31a4763954f8173a
parent1715f778687040addb56e1b859d9aef8c2746245 (diff)
downloadgtk+-wip/chergert/spellcheck.tar.gz
build: relax enchant-2 requirementwip/chergert/spellcheck
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index e54b9af809..179f10d922 100644
--- a/meson.build
+++ b/meson.build
@@ -23,7 +23,7 @@ epoxy_req = '>= 1.4'
cloudproviders_req = '>= 0.3.1'
xkbcommon_req = '>= 0.2.0'
sysprof_req = '>= 3.38.0'
-enchant_req = '>= 2.2.12'
+enchant_req = '>= 2.2.0'
gnome = import('gnome')
pkg_config = import('pkgconfig')
@@ -673,7 +673,7 @@ spellcheck_backends = []
if not get_option('spell-enchant').disabled()
libenchant_dep = dependency('enchant-2', version: enchant_req, required: get_option('spell-enchant'))
if libenchant_dep.found()
- spellcheck_backends += ['enchant']
+ spellcheck_backends += ['enchant2']
cdata.set10('HAVE_ENCHANT', true)
endif
endif