mirror of
https://github.com/samba-team/samba.git
synced 2025-02-01 05:47:28 +03:00
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
|
||
|
###############################
|