mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
aa96c75346
Bug: https://bugzilla.samba.org/show_bug.cgi?id=11564 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
14 lines
298 B
Python
14 lines
298 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'
|
|
)
|