summaryrefslogtreecommitdiffstats
path: root/auth/wscript_build
blob: 33cbed07e939f85f749102e0334439a7e5632174 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python

bld.SAMBA_SUBSYSTEM('authn_policy',
                  source='authn_policy.c',
                  deps='samba-util')

bld.SAMBA_LIBRARY('common_auth',
                  source='''auth_sam_reply.c
                            wbc_auth_util.c
                            auth_log.c
                            auth_util.c''',
                  deps='''talloc
                          samba-security
                          samba-util
                          util_str_escape
                          LIBTSOCKET
                          audit_logging
                          jansson
                          MESSAGING_SEND
                          server_id_db
                          ndr-samba''',
                  private_library=True)

bld.RECURSE('gensec')
bld.RECURSE('ntlmssp')
bld.RECURSE('credentials')