sway

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

commit f31b2e1b336ca5f5442400ac59e0ef6689fc2d8e
parent a8d1b05bac4cee56731d7e4aaafdcd0acd6bb787
Author: Yorick van Pelt <yorick@yorickvanpelt.nl>
Date:   Sat,  5 May 2018 17:28:00 +0200

meson.build: Look for '-lpam', not '-llibpam'.

See #1920 for more information.

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)