From: Ian Stakenvicius Date: Sat, 28 Jan 2017 02:31:21 +0000 (-0500) Subject: waf: disable-python - don't build samba-net X-Git-Tag: tdb-1.3.13~540 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa829986dea06a578b891133f96e9b6b02d81088;p=thirdparty%2Fsamba.git waf: disable-python - don't build samba-net samba-net requires PROVISION, which is disabled when python isn't available. Signed-off-by: Ian Stakenvicius Reviewed-by: Andrew Bartlett Reviewed-by: Douglas Bagnall --- diff --git a/source4/libnet/wscript_build b/source4/libnet/wscript_build index db113b2f71e..e192eb59404 100644 --- a/source4/libnet/wscript_build +++ b/source4/libnet/wscript_build @@ -4,7 +4,8 @@ bld.SAMBA_LIBRARY('samba-net', source='libnet.c libnet_passwd.c libnet_time.c libnet_rpc.c libnet_join.c libnet_site.c libnet_become_dc.c libnet_unbecome_dc.c libnet_vampire.c libnet_samdump.c libnet_samsync_ldb.c libnet_user.c libnet_group.c libnet_share.c libnet_lookup.c libnet_domain.c userinfo.c groupinfo.c userman.c groupman.c prereq_domain.c libnet_samsync.c', autoproto='libnet_proto.h', public_deps='samba-credentials dcerpc dcerpc-samr RPC_NDR_LSA RPC_NDR_SRVSVC RPC_NDR_DRSUAPI cli_composite LIBCLI_RESOLVE LIBCLI_FINDDCS cli_cldap LIBCLI_FINDDCS gensec_schannel LIBCLI_AUTH ndr smbpasswdparser PROVISION LIBCLI_SAMSYNC LIBTSOCKET', - private_library=True + private_library=True, + enabled=bld.PYTHON_BUILD_IS_ENABLED() )