1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-22 05:57:43 +03:00
Andrew Tridgell b0fb567f04 s4-waf: more dependencies on talloc
these are needed so we can support a system talloc without using the
bundled talloc.h
2010-04-06 20:27:13 +10:00

18 lines
479 B
Python

#!/usr/bin/env python
bld.SAMBA_PYTHON('WEB_WSGI',
source='wsgi.c',
deps='talloc'
)
bld.SAMBA_MODULE('WEB',
source='web_server.c',
autoproto='proto.h',
autoproto_extra_source='wsgi.c',
subsystem='service',
init_function='server_service_web_init',
deps='LIBTLS smbcalls process_model LIBPYTHON WEB_WSGI'
)