From 71b8cd8e302ee2a1dc8af16a82786309afc750ed Mon Sep 17 00:00:00 2001 From: ssfdust Date: Tue, 19 Sep 2023 11:49:32 +0800 Subject: [PATCH] Fix wf-config version when using wf-config from system * correct version from 0.16 which is the version of wlroots to 0.8 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 512fc3873..8be35b977 100644 --- a/meson.build +++ b/meson.build @@ -58,7 +58,7 @@ if get_option('use_system_wfconfig').disabled() elif get_option('use_system_wfconfig').enabled() use_system_wfconfig = true - wfconfig = dependency('wf-config', version: ['>=0.16.0', '<0.17.0'], required: true) + wfconfig = dependency('wf-config', version: ['>=0.8.0', '<0.9.0'], required: true) elif get_option('use_system_wfconfig').auto() wfconfig = dependency('wf-config', version: ['>=0.8.0', '<0.9.0'], required: false)