s3:net_idmap_delete do not lock two records at the same time
[Samba/gebeck_regimport.git] / lib / crypto / wscript_build
blobcd7a466a1552802c33e7f8dff274402afc148401
1 #!/usr/bin/env python
3 extra_source = ''
4 extra_deps = ''
5 if bld.CONFIG_SET('HAVE_BSD_MD5_H'):
6 extra_deps += ' bsd'
7 elif not bld.CONFIG_SET('HAVE_COMMONCRYPTO_COMMONDIGEST_H'):
8 extra_source += ' md5.c'
10 bld.SAMBA_SUBSYSTEM('LIBCRYPTO',
11 source='''crc32.c hmacmd5.c md4.c arcfour.c sha256.c hmacsha256.c
12 aes.c rijndael-alg-fst.c aes_cmac_128.c aes_ccm_128.c
13 ''' + extra_source,
14 deps='talloc' + extra_deps
17 bld.SAMBA_SUBSYSTEM('TORTURE_LIBCRYPTO',
18 source='md4test.c md5test.c hmacmd5test.c aes_cmac_128_test.c',
19 autoproto='test_proto.h',
20 deps='LIBCRYPTO'