Lines Matching refs:pam
7 This requires a configuration file /etc/pam.d/weston.
17 pam/meson.build | 8 +++
18 pam/weston-remote-access | 3 +
21 create mode 100644 pam/meson.build
22 create mode 100644 pam/weston-remote-access
115 + struct pam_handle *pam;
120 + ret = pam_start("weston-remote-access", username, &conv, &pam);
126 + ret = pam_authenticate(pam, 0);
132 + ret = pam_acct_mgmt(pam, 0);
140 + ret = pam_end(pam, ret);
177 + dep_pam = dependency('pam', required: false)
179 + dep_pam = cc.find_library('pam')
207 +subdir('pam')
211 diff --git a/pam/meson.build b/pam/meson.build
215 +++ b/pam/meson.build
223 + install_dir: join_paths(dir_sysconf, 'pam.d')
225 diff --git a/pam/weston-remote-access b/pam/weston-remote-access
229 +++ b/pam/weston-remote-access