mirror of
https://github.com/samba-team/samba.git
synced 2025-02-28 01:58:17 +03:00
Signed-off-by: Samuel Cabrero <samuelcabrero@kernevil.me> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
22 lines
457 B
Python
22 lines
457 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('http',
|
|
source='http.c http_auth.c',
|
|
deps='talloc tevent samba3core',
|
|
private_library=True,
|
|
)
|
|
|
|
bld.SAMBA_MODULE('gensec_http_basic',
|
|
source='gensec/basic.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_http_basic_init',
|
|
deps='samba-util auth_session'
|
|
)
|
|
|
|
bld.SAMBA_MODULE('gensec_http_ntlm',
|
|
source='gensec/ntlm.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_http_ntlm_init',
|
|
deps='samba-util auth_session'
|
|
)
|