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

s4:auth/gensec: remove unused dependencies to gensec_util

gensec_util only contains gensec_tstream and is already a public_dep
of 'gensec' itself.

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2016-12-29 17:16:22 +01:00
parent 207fa23318
commit ea0c35fbd1

View File

@ -13,7 +13,7 @@ bld.SAMBA_MODULE('gensec_krb5',
source='gensec_krb5.c ' + gensec_krb5_sources,
subsystem='gensec',
init_function='gensec_krb5_init',
deps='samba-credentials authkrb5 com_err gensec_util',
deps='samba-credentials authkrb5 com_err',
internal_module=False,
enabled=bld.AD_DC_BUILD_IS_ENABLED()
)
@ -23,7 +23,7 @@ bld.SAMBA_MODULE('gensec_gssapi',
source='gensec_gssapi.c',
subsystem='gensec',
init_function='gensec_gssapi_init',
deps='gssapi samba-credentials authkrb5 com_err gensec_util'
deps='gssapi samba-credentials authkrb5 com_err'
)
bld.SAMBA_PYTHON('pygensec',