mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
1b16b425d3
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
17 lines
359 B
Python
17 lines
359 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',
|
|
allow_warnings=True,
|
|
private_library=True
|
|
)
|
|
|
|
bld.SAMBA_PYTHON('python_messaging',
|
|
source='pymessaging.c',
|
|
deps='MESSAGING events pyparam_util',
|
|
realname='samba/messaging.so'
|
|
)
|
|
|