Change get_nt_acl_no_snum() to return an NTSTATUS, not a struct security_descriptor *.
[Samba/gebeck_regimport.git] / source3 / lib / pthreadpool / wscript_build
blob2cdd2ab312c7a927e0af3d76a375b9ee5d466057
1 #!/usr/bin/env python
3 if bld.env.WITH_PTHREADPOOL:
4 bld.SAMBA3_SUBSYSTEM('PTHREADPOOL',
5 source='pthreadpool.c',
6 deps='pthread rt replace')
7 else:
8 bld.SAMBA3_SUBSYSTEM('PTHREADPOOL',
9 source='pthreadpool_sync.c',
10 deps='replace')
13 bld.SAMBA3_BINARY('pthreadpooltest',
14 source='tests.c',
15 deps='PTHREADPOOL',
16 enabled=bld.env.WITH_PTHREADPOOL)