mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
a219c359b9
Check with git show -C Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
22 lines
466 B
Python
22 lines
466 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_generic',
|
|
source='gensec/generic.c',
|
|
subsystem='gensec',
|
|
init_function='gensec_http_generic_init',
|
|
deps='samba-util auth_session'
|
|
)
|