From 8bae4823f29984b49efb83b91e60fd761e0bbf9f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 7 Mar 2010 13:30:22 +1100 Subject: build: waf build for lib/tls --- source4/lib/tls/wscript | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 source4/lib/tls/wscript (limited to 'source4/lib') 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' + ) -- cgit