mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
16b2118b43
The startup and runtime functions that have no dependencies are moved into the top level. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>
63 lines
1.3 KiB
Python
63 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('gensec',
|
|
source='gensec_start.c socket.c gensec_tstream.c',
|
|
pc_files='gensec.pc',
|
|
autoproto='gensec_proto.h',
|
|
public_deps='UTIL_TEVENT samba-util errors LIBPACKET auth_system_session gensec_runtime',
|
|
deps='com_err',
|
|
vnum='0.0.1'
|
|
)
|
|
|
|
bld.SAMBA_MODULE('gensec_krb5',
|
|
source='gensec_krb5.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_krb5_init',
|
|
deps='credentials authkrb5 auth_session com_err',
|
|
internal_module=False,
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('gensec_gssapi',
|
|
source='gensec_gssapi.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_gssapi_init',
|
|
deps='gssapi credentials authkrb5 com_err'
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('cyrus_sasl',
|
|
source='cyrus_sasl.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_sasl_init',
|
|
deps='credentials sasl2',
|
|
enabled=bld.CONFIG_SET('HAVE_SASL')
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('gensec_spnego',
|
|
source='spnego.c',
|
|
autoproto='spnego_proto.h',
|
|
subsystem='gensec',
|
|
init_function='gensec_spnego_init',
|
|
deps='asn1util credentials SPNEGO_PARSE'
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('gensec_schannel',
|
|
source='schannel.c',
|
|
subsystem='gensec',
|
|
deps='COMMON_SCHANNEL NDR_SCHANNEL credentials ndr auth_session',
|
|
internal_module=True,
|
|
autoproto='schannel_proto.h',
|
|
init_function='gensec_schannel_init'
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('pygensec',
|
|
source='pygensec.c',
|
|
deps='gensec pytalloc-util pyparam_util',
|
|
realname='samba/gensec.so'
|
|
)
|
|
|