1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

31 lines
1.0 KiB
Plaintext
Raw Normal View History

2010-03-07 13:30:22 +11:00
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')
2010-03-07 16:18:44 +11:00
conf.CHECK_HEADERS('gcrypt.h')
2010-03-07 17:01:11 +11:00
conf.CHECK_FUNCS_IN('gpg_err_code_from_errno gcry_control', 'gcrypt')
2010-03-07 16:18:44 +11:00
2010-03-07 13:30:22 +11:00
def build(bld):
bld.SAMBA_SUBSYSTEM('LIBTLS',
source='tls.c tlscert.c',
public_deps='talloc GNUTLS GCRYPT LIBSAMBA-HOSTCONFIG samba_socket'
)