aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2019-03-04 10:25:34 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2019-03-04 08:44:17 -0700
commit3f184cf188234083498e0b03435853bbadd01a99 (patch)
tree34548b79fad0481e7ba233a82d09d84dda1647b7 /meson.build
parentAllow concurrent clicks (diff)
downloadsway-3f184cf188234083498e0b03435853bbadd01a99.tar.gz
sway-3f184cf188234083498e0b03435853bbadd01a99.tar.zst
sway-3f184cf188234083498e0b03435853bbadd01a99.zip
meson: update scdoc requirement to >= 1.9.2
Since scdoc 1.9.1 is bugged, this updates the meson version check to >= 1.9.2 and drops the version requirement from the README. This should make it more obvious to users who have 1.9.1 that they need to update scdoc to be able to compile man pages and hopefully cut down on the duplicate issues
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 270dc6b7..a08b2603 100644
--- a/meson.build
+++ b/meson.build
@@ -95,7 +95,7 @@ conf_data.set10('HAVE_SYSTEMD', systemd.found())
95conf_data.set10('HAVE_ELOGIND', elogind.found()) 95conf_data.set10('HAVE_ELOGIND', elogind.found())
96conf_data.set10('HAVE_TRAY', have_tray) 96conf_data.set10('HAVE_TRAY', have_tray)
97 97
98scdoc = dependency('scdoc', version: '>=1.9', native: true, required: get_option('man-pages')) 98scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages'))
99if scdoc.found() 99if scdoc.found()
100 scdoc_prog = find_program('scdoc') 100 scdoc_prog = find_program('scdoc')
101 sh = find_program('sh') 101 sh = find_program('sh')