mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
0d5587b5d1
(empty) libpopt.a overriding global one
(This used to be commit 2f06305e53
)
18 lines
572 B
Plaintext
18 lines
572 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)
|