mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
0af09f0179
Cleanup leftover include and linking of libldb-cmdline in oLschema2ldif. Do not build libldb-cmdline anymore when using the system ldb, oLschema2ldif was the only reason for building libldb-cmdline. Signed-off-by: Jeroen Dekkers <jeroen@dekkers.ch> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Tue Sep 10 12:52:26 CEST 2013 on sn-devel-104
20 lines
521 B
Python
20 lines
521 B
Python
#!/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'
|
|
)
|
|
|