mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
632114584d
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
15 lines
330 B
Python
15 lines
330 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('LIBASYNC_REQ',
|
|
source='async_sock.c',
|
|
public_deps='talloc tevent iov_buf',
|
|
deps='tevent-util socket-blocking'
|
|
)
|
|
|
|
bld.SAMBA_BINARY('async_connect_send_test',
|
|
source='async_connect_send_test.c',
|
|
deps='LIBASYNC_REQ',
|
|
install=False
|
|
)
|