summaryrefslogtreecommitdiffstats
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
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
-rw-r--r--README.es.md2
-rw-r--r--README.md2
-rw-r--r--README.pl.md2
-rw-r--r--meson.build2
4 files changed, 4 insertions, 4 deletions
diff --git a/README.es.md b/README.es.md
index 076d8900..79953848 100644
--- a/README.es.md
+++ b/README.es.md
@@ -38,7 +38,7 @@ Instale las dependencias:
38* pango 38* pango
39* cairo 39* cairo
40* gdk-pixbuf2 \*\* 40* gdk-pixbuf2 \*\*
41* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) >= 1.9.0 (optional: man pages) \* 41* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) (optional: man pages) \*
42* git \* 42* git \*
43 43
44_\*Compile-time dep_ 44_\*Compile-time dep_
diff --git a/README.md b/README.md
index aa7cd846..99835d6e 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ Install dependencies:
41* pango 41* pango
42* cairo 42* cairo
43* gdk-pixbuf2 \*\* 43* gdk-pixbuf2 \*\*
44* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) >= 1.9.0 (optional: man pages) \* 44* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) (optional: man pages) \*
45* git \* 45* git \*
46 46
47_\*Compile-time dep_ 47_\*Compile-time dep_
diff --git a/README.pl.md b/README.pl.md
index ebfd9214..0574093a 100644
--- a/README.pl.md
+++ b/README.pl.md
@@ -39,7 +39,7 @@ Zainstaluj zależności:
39* pango 39* pango
40* cairo 40* cairo
41* gdk-pixbuf2 \*\* 41* gdk-pixbuf2 \*\*
42* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) >= 1.9.0 (opcjonalnie: strony pomocy man) \* 42* [scdoc](https://git.sr.ht/~sircmpwn/scdoc) (opcjonalnie: strony pomocy man) \*
43* git \* 43* git \*
44 44
45_\*zależności kompilacji_ 45_\*zależności kompilacji_
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')