summaryrefslogtreecommitdiff
path: root/source4/web_server/wscript_build
blob: bf7e86b309b6b6341ab0c039f40979e14a127dac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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,
		)