1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/lib/krb5_wrap/wscript_build
Andreas Schneider 381ebd4af5 krb5_wrap: Move unwrap_edata_ntstatus() and make it static
This also removes the asn1util dependency from krb5_wrap and moves it to
libads which is the only user.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2016-08-31 20:59:17 +02:00

12 lines
352 B
Python
Executable File

#!/usr/bin/env python
add_deps = ''
if bld.CONFIG_SET('SAMBA4_USES_HEIMDAL'):
add_deps = ' asn1'
bld.SAMBA_LIBRARY('krb5samba',
source='krb5_samba.c gss_samba.c keytab_util.c enctype_convert.c',
deps='samba-util talloc krb5 com_err gssapi' + add_deps,
private_library=True
)