diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-05-06 08:52:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-06 08:52:27 -0400 |
commit | 73cc92213f704948f9a13539247c978f79a4e915 (patch) | |
tree | 56555fe18e29dd1ce3d7750c08ee0f93b9577f4d | |
parent | eda57e7761485f08c1bde0ef3e6a619d1b48348e (diff) | |
parent | f31b2e1b336ca5f5442400ac59e0ef6689fc2d8e (diff) |
Merge pull request #1920 from yorickvP/master
meson.build: Try looking for `pam` when `libpam` isn't found.
-rw-r--r-- | meson.build | 2 |
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) |