mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
d870c3481e
enables us to authenticate against system users (only PAM support right now)
(This used to be commit 0c894de58b
)
12 lines
396 B
Plaintext
12 lines
396 B
Plaintext
###############################
|
|
# start SMB_EXT_LIB_PAM
|
|
# check for security/pam_appl.h and -lpam
|
|
AC_CHECK_HEADERS(security/pam_appl.h)
|
|
AC_CHECK_LIB_EXT(pam, PAM_LIBS, pam_start)
|
|
if test x"$ac_cv_header_security_pam_appl_h" = x"yes" -a x"$ac_cv_lib_ext_pam_pam_start" = x"yes";then
|
|
SMB_EXT_LIB_ENABLE(PAM,YES)
|
|
fi
|
|
SMB_EXT_LIB(PAM, $PAM_LIBS)
|
|
# end SMB_EXT_LIB_PAM
|
|
###############################
|