1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00
samba-mirror/lib/krb5_wrap/wscript_build

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
632 B
Plaintext
Raw Normal View History

#!/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
)