1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00
Andrew Bartlett c008687ffb s4-messaging: split up messaging into a smaller library for send only
This will help avoid a dep loop when the low-level auth code relies on the message
code to deliver authentication messages

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2017-03-29 02:37:27 +02:00

22 lines
526 B
Python

#!/usr/bin/env python
bld.SAMBA_LIBRARY('MESSAGING_SEND',
source='messaging_send.c',
public_deps='messages_util messages_dgm UNIX_PRIVS cluster server_id_db',
private_library=True
)
bld.SAMBA_LIBRARY('MESSAGING',
source='messaging.c',
public_deps='samba-util NDR_IRPC UNIX_PRIVS cluster ndr dcerpc messages_util server_id_db talloc_report',
private_library=True
)
bld.SAMBA_PYTHON('python_messaging',
source='pymessaging.c',
deps='MESSAGING events pyparam_util pytalloc-util',
realname='samba/messaging.so'
)