mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +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'
|
|
)
|
|
|