blob: 046e2372fdfe99249e11ca789946c3bc1ed86413 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | #!/usr/bin/env python
bld.SAMBA_BINARY('ntlm_auth4',
                 source='ntlm_auth.c',
                 manpages='man/ntlm_auth4.1',
                 deps='''samba-hostconfig samba-util popt
                 POPT_SAMBA POPT_CREDENTIALS gensec LIBCLI_RESOLVE
                 auth4 NTLMSSP_COMMON MESSAGING events service''',
                 pyembed=True,
                 install=False
	)
bld.SAMBA_BINARY('oLschema2ldif',
	source='oLschema2ldif.c',
	manpages='man/oLschema2ldif.1',
	deps='samdb POPT_SAMBA'
	)
 |