1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

build: waf build for lib/tls

This commit is contained in:
Andrew Tridgell 2010-03-07 13:30:22 +11:00
parent 22fbe8cb70
commit 8bae4823f2
3 changed files with 29 additions and 1 deletions

View File

@ -60,7 +60,6 @@ source4/lib/com/config.mk
source4/lib/registry/config.mk source4/lib/registry/config.mk
source4/lib/wmi/config.mk source4/lib/wmi/config.mk
source4/lib/socket/config.mk source4/lib/socket/config.mk
source4/lib/tls/config.mk
source4/lib/samba3/config.mk source4/lib/samba3/config.mk
source4/ldap_server/config.mk source4/ldap_server/config.mk
libgpo/config.mk libgpo/config.mk

27
source4/lib/tls/wscript Normal file
View File

@ -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'
)

View File

@ -14,6 +14,7 @@ def set_options(opt):
opt.recurse(LIBREPLACE_DIR) opt.recurse(LIBREPLACE_DIR)
opt.recurse(LIBLDB_DIR) opt.recurse(LIBLDB_DIR)
opt.recurse('selftest') opt.recurse('selftest')
opt.recurse('lib/tls')
def configure(conf): def configure(conf):
@ -23,6 +24,7 @@ def configure(conf):
conf.sub_config(LIBREPLACE_DIR) conf.sub_config(LIBREPLACE_DIR)
conf.sub_config(LIBLDB_DIR) conf.sub_config(LIBLDB_DIR)
conf.sub_config('heimdal_build') conf.sub_config('heimdal_build')
conf.sub_config('lib/tls')
conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1) conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
conf.ADD_EXTRA_INCLUDES('#source4 #lib #source4/lib #source4/include #lib/socket_wrapper #lib/talloc #lib/replace #lib/event') conf.ADD_EXTRA_INCLUDES('#source4 #lib #source4/lib #source4/include #lib/socket_wrapper #lib/talloc #lib/replace #lib/event')