mirror of
https://github.com/samba-team/samba.git
synced 2025-07-31 20:22:15 +03:00
16 lines
326 B
Python
16 lines
326 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('MESSAGING',
|
|
source='messaging.c',
|
|
public_deps='libsamba-util TDB_WRAP NDR_IRPC UNIX_PRIVS UTIL_TDB CLUSTER LIBNDR samba_socket dcerpc'
|
|
)
|
|
|
|
|
|
bld.SAMBA_PYTHON('python_messaging',
|
|
source='pymessaging.c',
|
|
deps='MESSAGING libevents pyparam_util',
|
|
realname='samba/messaging.so'
|
|
)
|
|
|