1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00
Simo Sorce 4a08acec08 r7235: We do not need PAM here anymore
(This used to be commit f338697edd31a0aa675aadedf2a51d748b75f913)
2007-10-10 13:17:30 -05:00

14 lines
457 B
Plaintext

AC_CHECK_HEADERS(setjmp.h)
###############################
# start SMB_EXT_LIB_GNUTLS
# check for gnutls/gnutls.h and -lgnutls
AC_CHECK_HEADERS(gnutls/gnutls.h)
AC_CHECK_LIB_EXT(gnutls, GNUTLS_LIBS, gnutls_global_init)
if test x"$ac_cv_header_gnutls_gnutls_h" = x"yes" -a x"$ac_cv_lib_ext_gnutls_gnutls_global_init" = x"yes";then
SMB_EXT_LIB_ENABLE(GNUTLS,YES)
fi
SMB_EXT_LIB(GNUTLS, $GNUTLS_LIBS)
# end SMB_EXT_LIB_GNUTLS
###############################