sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 462e15d9a506f2265d4b20bfbc1c245be5f82a17
parent cc16948c8598e8b9aa98506dcdad66967dc28712
Author: sghctoma <sghctoma@gmail.com>
Date:   Thu, 30 Aug 2018 09:40:35 +0200

Make libcap an optional dependency

FreeBSD does not have libcap, so without "required: false" Sway fails
to build.

Diffstat:
Mmeson.build | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build @@ -38,7 +38,7 @@ pango = dependency('pango') pangocairo = dependency('pangocairo') gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: false) pixman = dependency('pixman-1') -libcap = dependency('libcap') +libcap = dependency('libcap', required: false) libinput = dependency('libinput', version: '>=1.6.0') libpam = cc.find_library('pam') systemd = dependency('libsystemd', required: false)