summaryrefslogtreecommitdiff
path: root/source4/lib/tls
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/tls')
-rw-r--r--source4/lib/tls/wscript27
1 files changed, 27 insertions, 0 deletions
diff --git a/source4/lib/tls/wscript b/source4/lib/tls/wscript
new file mode 100644
index 0000000000..5a6375720e
--- /dev/null
+++ b/source4/lib/tls/wscript
@@ -0,0 +1,27 @@
+import Options
+
+def set_options(opt):
+ # allow users to disable gnutls
+ opt.add_option('--disable-gnutls',
+ help=("Disable use of gnutls"),
+ action="store_true", dest='disable_gnutls', default=False)
+
+def configure(conf):
+ # check for gnutls
+ conf.check_cfg(package='gnutls',
+ args='"gnutls >= 1.4.0" --cflags --libs',
+ msg='Checking for gnutls >= 1.4.0', mandatory=False)
+
+ if 'HAVE_GNUTLS' in conf.env and not Options.options.disable_gnutls:
+ conf.DEFINE('ENABLE_GNUTLS', 1)
+
+ conf.CHECK_HEADERS('gnutls/gnutls.h')
+
+ # check for gnutls_datum types
+ conf.CHECK_TYPES('gnutls_datum gnutls_datum_t')
+
+def build(bld):
+ bld.SAMBA_SUBSYSTEM('LIBTLS',
+ source='tls.c tlscert.c',
+ public_deps='talloc GNUTLS GCRYPT LIBSAMBA-HOSTCONFIG samba_socket'
+ )