summaryrefslogtreecommitdiff
path: root/lib/krb5_wrap/wscript_build
blob: 1a65d28b6c0c476964314a5153c2d0ead83830c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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 asn1util talloc krb5 com_err gssapi' + add_deps,
                  private_library=True
                 )