diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-05-06 08:52:27 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-05-06 08:52:27 -0400 |
| commit | fb5a6025ce80eef4b0bc82674e00307b67cf9721 (patch) | |
| tree | 56555fe18e29dd1ce3d7750c08ee0f93b9577f4d | |
| parent | a63d1403b26197d5243eebdec6cda68268ba8705 (diff) | |
| parent | b440859cfe7d9dfa8230302691e2275fc07c12d5 (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) |
