From 5324b943e72d597da178d362f7c938fe0a4e57b0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 11 Oct 2010 01:09:26 +0200 Subject: wafsamba: Fix handling of pyembed/pyext. --- source4/web_server/wscript_build | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'source4/web_server/wscript_build') diff --git a/source4/web_server/wscript_build b/source4/web_server/wscript_build index dc1c3870dc..eb0f44f4da 100644 --- a/source4/web_server/wscript_build +++ b/source4/web_server/wscript_build @@ -2,17 +2,18 @@ bld.SAMBA_SUBSYSTEM('WEB_WSGI', - source='wsgi.c', - deps='talloc LIBTSOCKET', - pyembed=True - ) + 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 smbcalls process_model LIBPYTHON WEB_WSGI' - ) + 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', + pyembed=True, + ) -- cgit