diff options
author | 2019-03-04 10:25:34 -0500 | |
---|---|---|
committer | 2019-03-04 12:50:56 -0500 | |
commit | e8eab3b82584290e8e22808c3af30e45f701c6e5 (patch) | |
tree | faf52468587b927c78da5798ba4804bc1e1769d0 | |
parent | Allow concurrent clicks (diff) | |
download | sway-e8eab3b82584290e8e22808c3af30e45f701c6e5.tar.gz sway-e8eab3b82584290e8e22808c3af30e45f701c6e5.tar.zst sway-e8eab3b82584290e8e22808c3af30e45f701c6e5.zip |
meson: update scdoc requirement to >= 1.9.21.0-rc5
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
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ Install dependencies: | |||
40 | * pango | 40 | * pango |
41 | * cairo | 41 | * cairo |
42 | * gdk-pixbuf2 \*\* | 42 | * gdk-pixbuf2 \*\* |
43 | * [scdoc](https://git.sr.ht/~sircmpwn/scdoc) >= 1.9.0 (optional: man pages) \* | 43 | * [scdoc](https://git.sr.ht/~sircmpwn/scdoc) (optional: man pages) \* |
44 | * git \* | 44 | * git \* |
45 | 45 | ||
46 | _\*Compile-time dep_ | 46 | _\*Compile-time dep_ |
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()) | |||
95 | conf_data.set10('HAVE_ELOGIND', elogind.found()) | 95 | conf_data.set10('HAVE_ELOGIND', elogind.found()) |
96 | conf_data.set10('HAVE_TRAY', have_tray) | 96 | conf_data.set10('HAVE_TRAY', have_tray) |
97 | 97 | ||
98 | scdoc = dependency('scdoc', version: '>=1.9', native: true, required: get_option('man-pages')) | 98 | scdoc = dependency('scdoc', version: '>=1.9.2', native: true, required: get_option('man-pages')) |
99 | if scdoc.found() | 99 | if scdoc.found() |
100 | scdoc_prog = find_program('scdoc') | 100 | scdoc_prog = find_program('scdoc') |
101 | sh = find_program('sh') | 101 | sh = find_program('sh') |