sway

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

commit 73cc92213f704948f9a13539247c978f79a4e915
parent eda57e7761485f08c1bde0ef3e6a619d1b48348e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  6 May 2018 08:52:27 -0400

Merge pull request #1920 from yorickvP/master

meson.build: Try looking for `pam` when `libpam` isn't found.
Diffstat:
Mmeson.build | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build @@ -36,7 +36,7 @@ gdk_pixbuf = dependency('gdk-pixbuf-2.0', required: false) pixman = dependency('pixman-1') libcap = dependency('libcap') libinput = dependency('libinput', version: '>=1.6.0') -libpam = cc.find_library('libpam') +libpam = cc.find_library('pam') math = cc.find_library('m') rt = cc.find_library('rt') git = find_program('git', required: false)