From 8f1b809d2ccb083cb84532e98b04a12fb1039e22 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 20 Mar 2010 16:27:48 +1100 Subject: build: nearly there on samba4 build --- source4/lib/tls/wscript | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/lib') diff --git a/source4/lib/tls/wscript b/source4/lib/tls/wscript index 24929e4c80..7b30a89215 100644 --- a/source4/lib/tls/wscript +++ b/source4/lib/tls/wscript @@ -15,6 +15,8 @@ def configure(conf): if 'HAVE_GNUTLS' in conf.env and not Options.options.disable_gnutls: conf.DEFINE('ENABLE_GNUTLS', 1) + conf.CHECK_FUNCS_IN('gnutls_global_init', 'gnutls') + conf.CHECK_HEADERS('gnutls/gnutls.h') # check for gnutls_datum types @@ -28,5 +30,5 @@ def configure(conf): def build(bld): bld.SAMBA_SUBSYSTEM('LIBTLS', source='tls.c tlscert.c', - public_deps='talloc GNUTLS GCRYPT LIBSAMBA-HOSTCONFIG samba_socket' + public_deps='talloc gnutls gcrypt LIBSAMBA-HOSTCONFIG samba_socket' ) -- cgit