1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source4/lib/http/wscript_build
Stefan Metzmacher a219c359b9 s4:http/gensec: rename ntlm.c to generic.c
Check with git show -C

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
2017-08-07 15:20:02 +02:00

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'
)