aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-05-06 08:52:27 -0400
committerGitHub <noreply@github.com>2018-05-06 08:52:27 -0400
commit73cc92213f704948f9a13539247c978f79a4e915 (patch)
tree56555fe18e29dd1ce3d7750c08ee0f93b9577f4d
parenteda57e7761485f08c1bde0ef3e6a619d1b48348e (diff)
parentf31b2e1b336ca5f5442400ac59e0ef6689fc2d8e (diff)
Merge pull request #1920 from yorickvP/master
meson.build: Try looking for `pam` when `libpam` isn't found.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index bf266e5f..f59d29b3 100644
--- 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)