1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-22 07:17:05 +03:00
Andrew Tridgell 2dcb596e83 s4-waf: removed dependencies on missing subsystems
these were left over from the old config.mk system
2010-10-21 19:03:24 +11:00

20 lines
366 B
Python

#!/usr/bin/env python
bld.SAMBA_SUBSYSTEM('WEB_WSGI',
source='wsgi.c',
pyext=True,
deps='talloc LIBTSOCKET',
)
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 process_model LIBPYTHON WEB_WSGI',
pyembed=True,
)