From 978ce498940ad6739b30c12c8a24ade11a423b5f Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 20 Dec 2021 16:42:00 +0100 Subject: [PATCH] build: add Meson subproject fallback for wayland-protocols This allows building swaylock with a local wayland-protocols. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2a44fee..fc1f61c 100644 --- a/meson.build +++ b/meson.build @@ -36,7 +36,7 @@ if is_freebsd endif wayland_client = dependency('wayland-client') -wayland_protos = dependency('wayland-protocols', version: '>=1.14') +wayland_protos = dependency('wayland-protocols', version: '>=1.14', fallback: 'wayland-protocols') xkbcommon = dependency('xkbcommon') cairo = dependency('cairo') gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: get_option('gdk-pixbuf'))