wafsamba: Clarify needs_python argument name, use pyembed/pyext where
[sfrench/samba-autobuild/.git] / source4 / web_server / wscript_build
1 #!/usr/bin/env python
2
3
4 bld.SAMBA_SUBSYSTEM('WEB_WSGI',
5                                 source='wsgi.c',
6                                 deps='talloc LIBTSOCKET',
7                                 pyembed=True
8                  )
9
10
11 bld.SAMBA_MODULE('WEB',
12                  source='web_server.c',
13                  autoproto='proto.h',
14                  autoproto_extra_source='wsgi.c',
15                  subsystem='service',
16                  init_function='server_service_web_init',
17                  deps='LIBTLS smbcalls process_model LIBPYTHON WEB_WSGI'
18                  )