mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
c403fa1a7f
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
24 lines
632 B
Python
24 lines
632 B
Python
#!/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
|
|
krb5_errs.c
|
|
''',
|
|
deps='''
|
|
samba-util
|
|
talloc
|
|
krb5
|
|
com_err
|
|
gssapi
|
|
''' + add_deps,
|
|
private_library=True
|
|
)
|