aboutsummaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index a08b2603..02b5d606 100644
--- a/meson.build
+++ b/meson.build
@@ -57,7 +57,7 @@ elogind = dependency('libelogind', version: '>=239', required: false)
57xcb = dependency('xcb', required: get_option('xwayland')) 57xcb = dependency('xcb', required: get_option('xwayland'))
58math = cc.find_library('m') 58math = cc.find_library('m')
59rt = cc.find_library('rt') 59rt = cc.find_library('rt')
60git = find_program('git', required: false) 60git = find_program('git', native: true, required: false)
61 61
62# Try first to find wlroots as a subproject, then as a system dependency 62# Try first to find wlroots as a subproject, then as a system dependency
63wlroots_version = '>=0.4.1' 63wlroots_version = '>=0.4.1'
@@ -97,8 +97,8 @@ conf_data.set10('HAVE_TRAY', have_tray)
97 97
98scdoc = dependency('scdoc', version: '>=1.9.2', 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.get_pkgconfig_variable('scdoc'), native: true)
101 sh = find_program('sh') 101 sh = find_program('sh', native: true)
102 mandir = get_option('mandir') 102 mandir = get_option('mandir')
103 man_files = [ 103 man_files = [
104 'sway/sway.1.scd', 104 'sway/sway.1.scd',