1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-30 13:18:05 +03:00
samba-mirror/libcli/http/wscript_build
Volker Lendecke 2f2961a117 build: libcli/http does not need samba3core, only gensec
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
2019-12-08 20:24:31 +00:00

22 lines
485 B
Python

#!/usr/bin/env python
bld.SAMBA_LIBRARY('http',
source='http.c http_auth.c http_conn.c',
deps='talloc tevent gensec dns_lookup',
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'
)