diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-14 15:00:50 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-14 17:24:05 +0200 |
commit | 8209198998270e6374c0d7da2598c20dd9c4d8b3 (patch) | |
tree | 220d1e46e97b1a16e02f28f0af8a20967d874738 | |
parent | d286b1755cc95c24acf51324638311de93f86819 (diff) | |
download | samba-8209198998270e6374c0d7da2598c20dd9c4d8b3.tar.gz samba-8209198998270e6374c0d7da2598c20dd9c4d8b3.tar.bz2 samba-8209198998270e6374c0d7da2598c20dd9c4d8b3.zip |
waf: work around circular dependency finder erroneously removing dependency of gensec on dcerpc.
-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' ) |