mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
def configure(conf):
|
||
|
conf.CHECK_CODE('''
|
||
|
#include <netinet/tcp.h>
|
||
|
int main(void) { return TCP_USER_TIMEOUT; }
|
||
|
''',
|
||
|
'HAVE_TCP_USER_TIMEOUT',
|
||
|
addmain=False,
|
||
|
msg='Checking for TCP_USER_TIMEOUT')
|
||
|
|
||
|
def build(bld):
|
||
|
bld.SAMBA_SUBSYSTEM(
|
||
|
'LIBTSOCKET',
|
||
|
source='tsocket.c tsocket_helpers.c tsocket_bsd.c',
|
||
|
public_deps='talloc tevent iov_buf socket-blocking',
|
||
|
public_headers='tsocket.h tsocket_internal.h'
|
||
|
)
|
||
|
|
||
|
bld.SAMBA_BINARY(
|
||
|
'test_tsocket_bsd_addr',
|
||
|
source='tests/test_bsd_addr.c',
|
||
|
deps='cmocka replace LIBTSOCKET',
|
||
|
local_include=False,
|
||
|
for_selftest=True
|
||
|
)
|
||
|
|
||
|
bld.SAMBA_BINARY(
|
||
|
'test_tstream',
|
||
|
source='tests/test_tstream.c tests/socketpair_tcp.c',
|
||
|
deps='cmocka replace LIBTSOCKET',
|
||
|
local_include=False,
|
||
|
enabled=bld.CONFIG_SET('HAVE_TCP_USER_TIMEOUT'),
|
||
|
for_selftest=True
|
||
|
)
|
||
|
|