From 8209198998270e6374c0d7da2598c20dd9c4d8b3 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 14 Sep 2010 15:00:50 +0200 Subject: [PATCH] waf: work around circular dependency finder erroneously removing dependency of gensec on dcerpc. --- source4/dsdb/wscript_build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source4/dsdb/wscript_build b/source4/dsdb/wscript_build index 426b12dc7f1..0f1b3854366 100644 --- a/source4/dsdb/wscript_build +++ b/source4/dsdb/wscript_build @@ -51,6 +51,9 @@ bld.SAMBA_MODULE('DNS_UPDATE_SRV', bld.SAMBA_PYTHON('python_dsdb', source='pydsdb.c', - deps='SAMDB pyldb_util', + # the dependency on dcerpc here is because gensec + # depends on dcerpc but the waf circular dependency finder + # removes it so we end up with unresolved symbols. + deps='SAMDB pyldb_util dcerpc', realname='samba/dsdb.so' ) -- 2.34.1