diff options
-rw-r--r-- | source4/dsdb/wscript_build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/dsdb/wscript_build b/source4/dsdb/wscript_build index 426b12dc7f..0f1b385436 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' ) |