summaryrefslogtreecommitdiff
path: root/lib/krb5_wrap/wscript_build
blob: dd9fc08fff7117802d9ca64810931628722a9333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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
                 )