mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
daf6d0fb28
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
43 lines
1.0 KiB
Python
Executable File
43 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('gensec_util',
|
|
source='socket.c gensec_tstream.c',
|
|
deps='tevent-util tevent samba-util LIBTSOCKET',
|
|
autoproto='gensec_proto.h')
|
|
|
|
bld.SAMBA_MODULE('gensec_krb5',
|
|
source='gensec_krb5.c gensec_krb5_util.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_krb5_init',
|
|
deps='samba-credentials authkrb5 com_err gensec_util',
|
|
internal_module=False,
|
|
enabled=bld.AD_DC_BUILD_IS_ENABLED()
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('gensec_gssapi',
|
|
source='gensec_gssapi.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_gssapi_init',
|
|
allow_warnings=True,
|
|
deps='gssapi samba-credentials authkrb5 com_err gensec_util'
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('cyrus_sasl',
|
|
source='cyrus_sasl.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_sasl_init',
|
|
deps='samba-credentials sasl2',
|
|
allow_warnings=True,
|
|
enabled=bld.CONFIG_SET('HAVE_SASL')
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('pygensec',
|
|
source='pygensec.c',
|
|
deps='gensec pytalloc-util pyparam_util',
|
|
realname='samba/gensec.so'
|
|
)
|
|
|