mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
381ebd4af5
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>
12 lines
352 B
Python
Executable File
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
|
|
)
|