mirror of
https://github.com/samba-team/samba.git
synced 2025-01-21 18:04:06 +03:00
7b8332369f
of gnutls. Thanks to ab for spotting this. (This used to be commit 437c4057ae4e89725ddbdd026977510beb33c009)
17 lines
633 B
Plaintext
17 lines
633 B
Plaintext
###############################
|
|
# 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)
|
|
AC_CHECK_DECL(gnutls_x509_crt_set_subject_key_id,
|
|
[AC_DEFINE(HAVE_GNUTLS_X509_CRT_SET_SUBJECT_KEY_ID,1,gnutls subject_key)], [], [
|
|
#include <gnutls/gnutls.h>
|
|
#include <gnutls/x509.h>
|
|
])
|
|
fi
|
|
SMB_EXT_LIB(GNUTLS, $GNUTLS_LIBS)
|
|
# end SMB_EXT_LIB_GNUTLS
|
|
###############################
|