mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
7b431eba22
All subsystems that include pytalloc.h need to link against pytalloc-util. BUG: https://bugzilla.samba.org/show_bug.cgi?id=11789 Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Garming Sam <garming@samba.org> Autobuild-Date(master): Tue Mar 15 07:08:16 CET 2016 on sn-devel-144
16 lines
361 B
Python
16 lines
361 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
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'
|
|
)
|
|
|