1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/source4/web_server/wscript_build
Jelmer Vernooij 9382507909 web_server: Don't build wsgi support as python module but rather as
subsystem so we don't install it into /usr/lib.
2010-06-18 23:51:40 +02:00

19 lines
517 B
Python

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