From: Günther Deschner Date: Fri, 30 Mar 2012 13:16:43 +0000 (+0200) Subject: waf: when building with system krb5, we do not need to build local heimdal. X-Git-Tag: ldb-1.1.6~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d82aab6c709ce840594e6bafe29ae22f358fc7ee;p=thirdparty%2Fsamba.git waf: when building with system krb5, we do not need to build local heimdal. Guenther Signed-off-by: Andreas Schneider --- diff --git a/wscript_build b/wscript_build index 93008a8744d..e3cacbf7348 100644 --- a/wscript_build +++ b/wscript_build @@ -111,7 +111,8 @@ bld.RECURSE('libcli/samsync') bld.RECURSE('libcli/registry') bld.RECURSE('source4/lib/policy') bld.RECURSE('libcli/named_pipe_auth') -bld.RECURSE('source4/heimdal_build') +if not bld.CONFIG_SET("USING_SYSTEM_KRB5"): + bld.RECURSE('source4/heimdal_build') bld.RECURSE('libcli/smbreadline') bld.RECURSE('codepages') bld.RECURSE('source4/setup')