blob: 2cdd2ab312c7a927e0af3d76a375b9ee5d466057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python
if bld.env.WITH_PTHREADPOOL:
bld.SAMBA3_SUBSYSTEM('PTHREADPOOL',
source='pthreadpool.c',
deps='pthread rt replace')
else:
bld.SAMBA3_SUBSYSTEM('PTHREADPOOL',
source='pthreadpool_sync.c',
deps='replace')
bld.SAMBA3_BINARY('pthreadpooltest',
source='tests.c',
deps='PTHREADPOOL',
enabled=bld.env.WITH_PTHREADPOOL)
|