mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
5f2f4849e5
Signed-off-by: Stefan Metzmacher <metze@samba.org>
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
###############################
|
|
# start SMB_EXT_LIB_PAM
|
|
# check for security/pam_appl.h and -lpam
|
|
# Tests are now moved in ../nsswitch/config.m4 because winbind stuff require more pam tests
|
|
# 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)
|
|
|
|
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)
|
|
SASL_CFLAGS="$CFLAGS"
|
|
SASL_CPPFLAGS="$CPPFLAGS"
|
|
SASL_LDFLAGS="$LDFLAGS"
|
|
LIB_REMOVE_USR_LIB(SASL_LDFLAGS)
|
|
CFLAGS_REMOVE_USR_INCLUDE(SASL_CPPFLAGS)
|
|
CFLAGS_REMOVE_USR_INCLUDE(SASL_CFLAGS)
|
|
else
|
|
SMB_ENABLE(cyrus_sasl,NO)
|
|
fi
|
|
|
|
SMB_EXT_LIB(SASL, $SASL_LIBS, [${SASL_CFLAGS}], [${SASL_CPPFLAGS}], [${SASL_LDFLAGS}])
|