Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
c620d9e1
Commit
c620d9e1
authored
Mar 14, 2002
by
Pontus Freyhult
Browse files
Need to check for libpam if PAM is enabled.
Rev: ChangeLog:1.465 Rev: configure.in:1.132
parent
0f92785a
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c620d9e1
2002-03-14 Pontus <pont@it.uu.se>
* configure.in: Added check for libpam if PAM is enabled.
2002-03-14 Niels Möller <nisse@cuckoo.hack.org>
* configure.in: Removed check for 8-bit clean m4.
...
...
configure.in
View file @
c620d9e1
...
...
@@ -377,8 +377,14 @@ AC_SUBST(KRB_PROGRAM)
AH_TEMPLATE([WITH_PAM], [For PAM])
if test x$enable_pam = xyes; then
AC_DEFINE(WITH_PAM)
PAM_PROGRAM=lsh-pam-checkpw
AC_CHECK_LIB(pam,pam_start,, enable_pam=no )
if test x$enable_pam = xyes; then
AC_DEFINE(WITH_PAM)
PAM_PROGRAM=lsh-pam-checkpw
else
AC_MSG_WARN([pam_start not found in libpam, disabling PAM])
fi
fi
AC_SUBST(PAM_PROGRAM)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment