1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00
samba-mirror/auth/gensec/wscript_build
Andrew Bartlett 5f01bb1b06 build: Add talloc and samba-debug dep for gensec_external module
On a host without a talloc.h, this caused the build to fail

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>

Autobuild-User(master): Volker Lendecke <vl@samba.org>
Autobuild-Date(master): Thu Mar 19 18:01:09 CET 2015 on sn-devel-104
2015-03-19 18:01:09 +01:00

42 lines
1.1 KiB
Python
Executable File

#!/usr/bin/env python
bld.SAMBA_LIBRARY('gensec',
source='gensec.c gensec_start.c gensec_util.c',
pc_files='gensec.pc',
autoproto='gensec_toplevel_proto.h',
public_deps='tevent-util samba-util errors LIBPACKET auth_system_session samba-modules gensec_util asn1util',
public_headers='gensec.h',
deps='com_err',
vnum='0.0.1'
)
bld.SAMBA_MODULE('gensec_spnego',
source='spnego.c',
autoproto='spnego_proto.h',
subsystem='gensec',
init_function='gensec_spnego_init',
deps='asn1util samba-credentials SPNEGO_PARSE'
)
bld.SAMBA_MODULE('gensec_schannel',
source='schannel.c',
autoproto='schannel_proto.h',
subsystem='gensec',
init_function='gensec_schannel_init',
deps='COMMON_SCHANNEL NDR_SCHANNEL samba-credentials auth_session'
)
bld.SAMBA_MODULE('gensec_ncalrpc',
source='ncalrpc.c',
subsystem='gensec',
init_function='gensec_ncalrpc_as_system_init',
deps='samba-util auth_session'
)
bld.SAMBA_MODULE('gensec_external',
source='external.c',
autoproto='external_proto.h',
subsystem='gensec',
deps='samba-debug talloc',
init_function='gensec_external_init'
)