mirror of
https://github.com/samba-team/samba.git
synced 2025-02-22 05:57:43 +03:00
is using tls by looking at the first byte on the connection. This allows both https and http services to be on the same port (This used to be commit 6369dfb6585ce4d4e3028c557395f2d73c290c92)
14 lines
457 B
Plaintext
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
|
|
###############################
|