mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
33d6ffe16a
metze
(This used to be commit 675541f24e
)
31 lines
922 B
Plaintext
31 lines
922 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_ENABLE(PAM,YES)
|
|
fi
|
|
SMB_EXT_LIB(PAM, $PAM_LIBS)
|
|
# end SMB_EXT_LIB_PAM
|
|
###############################
|
|
|
|
################################################
|
|
# test for where we get crypt() from
|
|
AC_CHECK_LIB_EXT(crypt, CRYPT_LIBS, crypt)
|
|
SMB_ENABLE(CRYPT,YES)
|
|
SMB_EXT_LIB(CRYPT, $CRYPT_LIBS)
|
|
|
|
AC_CHECK_FUNCS(crypt16 getauthuid getpwanam)
|
|
|
|
AC_CHECK_HEADERS(sasl/sasl.h)
|
|
AC_CHECK_LIB_EXT(sasl2, SASL_LIBS, sasl_client_init)
|
|
SMB_EXT_LIB(SASL, $SASL_LIBS)
|
|
|
|
if test x"$ac_cv_header_sasl_sasl_h" = x"yes" -a x"$ac_cv_lib_ext_sasl2_sasl_client_init" = x"yes";then
|
|
SMB_ENABLE(SASL,YES)
|
|
SMB_ENABLE(cyrus_sasl,YES)
|
|
else
|
|
SMB_ENABLE(cyrus_sasl,NO)
|
|
fi
|