mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
19 lines
341 B
Python
19 lines
341 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('WEB_WSGI',
|
|
source='wsgi.c',
|
|
pyext=True,
|
|
deps='talloc LIBTSOCKET',
|
|
)
|
|
|
|
|
|
bld.SAMBA_MODULE('service_web',
|
|
source='web_server.c',
|
|
subsystem='service',
|
|
init_function='server_service_web_init',
|
|
deps='LIBTLS process_model LIBPYTHON WEB_WSGI',
|
|
pyembed=True,
|
|
internal_module=False,
|
|
)
|