mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
bd9b59ae28
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
19 lines
644 B
Python
19 lines
644 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA3_SUBSYSTEM('UNIX_MSG',
|
|
source='unix_msg.c',
|
|
deps='replace PTHREADPOOL iov_buf msghdr')
|
|
|
|
bld.SAMBA3_BINARY('unix_msg_test',
|
|
source='tests.c',
|
|
deps='UNIX_MSG POLL_FUNCS_TEVENT',
|
|
install=False)
|
|
bld.SAMBA3_BINARY('unix_msg_test_drain',
|
|
source='test_drain.c',
|
|
deps='UNIX_MSG POLL_FUNCS_TEVENT',
|
|
install=False)
|
|
bld.SAMBA3_BINARY('unix_msg_test_source',
|
|
source='test_source.c',
|
|
deps='UNIX_MSG POLL_FUNCS_TEVENT',
|
|
install=False)
|