mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
1e28aa147f
To remove finddcs_nbt these missing deps need to be added. These subsystems linked to to implicit dependencies provided by finddcs. Due to the new arrangmenet of subsystems, MESSAGING needs to be a private library to avoid being a source of duplicate symbols. Andrew Bartlett
17 lines
355 B
Python
17 lines
355 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_LIBRARY('MESSAGING',
|
|
source='messaging.c',
|
|
public_deps='samba-util tdb-wrap NDR_IRPC UNIX_PRIVS util_tdb cluster ndr samba_socket dcerpc',
|
|
private_library=True
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('python_messaging',
|
|
source='pymessaging.c',
|
|
deps='MESSAGING events pyparam_util',
|
|
realname='samba/messaging.so'
|
|
)
|
|
|