1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s4:auth/gensec: explicitly use allow_warnings=True for gssapi and sasl modules

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher 2014-02-26 07:35:22 +01:00 committed by Andrew Bartlett
parent 6662c2b096
commit daf6d0fb28

View File

@ -19,6 +19,7 @@ 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'
)
@ -28,6 +29,7 @@ bld.SAMBA_MODULE('cyrus_sasl',
subsystem='gensec',
init_function='gensec_sasl_init',
deps='samba-credentials sasl2',
allow_warnings=True,
enabled=bld.CONFIG_SET('HAVE_SASL')
)