03edc8a68bc931184b638bde991361d7498986a9
[samba.git] / source / auth / config.mk
1 # auth server subsystem
2 include gensec/config.mk
3 include kerberos/config.mk
4 include ntlmssp/config.mk
5 include credentials/config.mk
6
7 #######################
8 # Start MODULE auth_sam
9 [MODULE::auth_sam]
10 # gensec_krb5 and gensec_gssapi depend on it
11 OUTPUT_TYPE = MERGEDOBJ
12 PRIVATE_PROTO_HEADER = auth_sam.h
13 INIT_FUNCTION = auth_sam_init
14 SUBSYSTEM = auth
15 OBJ_FILES = \
16                 auth_sam.o
17 REQUIRED_SUBSYSTEMS = \
18                 SAMDB
19 # End MODULE auth_sam
20 #######################
21
22 #######################
23 # Start MODULE auth_anonymous
24 [MODULE::auth_anonymous]
25 INIT_FUNCTION = auth_anonymous_init
26 SUBSYSTEM = auth
27 OBJ_FILES = \
28                 auth_anonymous.o
29 # End MODULE auth_anonymous
30 #######################
31
32 #######################
33 # Start MODULE auth_winbind
34 [MODULE::auth_winbind]
35 INIT_FUNCTION = auth_winbind_init
36 SUBSYSTEM = auth
37 OBJ_FILES = \
38                 auth_winbind.o
39 REQUIRED_SUBSYSTEMS = \
40                 LIBWINBIND-CLIENT \
41                 NDR_NETLOGON LIBNDR
42 # End MODULE auth_winbind
43 #######################
44
45 #######################
46 # Start MODULE auth_developer
47 [MODULE::auth_developer]
48 INIT_FUNCTION = auth_developer_init
49 SUBSYSTEM = auth
50 OBJ_FILES = \
51                 auth_developer.o
52 # End MODULE auth_developer
53 #######################
54
55 #######################
56 # Start MODULE auth_unix
57 [MODULE::auth_unix]
58 INIT_FUNCTION = auth_unix_init
59 SUBSYSTEM = auth
60 OBJ_FILES = \
61                 auth_unix.o
62 REQUIRED_SUBSYSTEMS = \
63                 EXT_LIB_CRYPT EXT_LIB_PAM PAM_ERRORS
64 # End MODULE auth_unix
65 #######################
66
67 [SUBSYSTEM::PAM_ERRORS]
68 PRIVATE_PROTO_HEADER = pam_errors.h
69 OBJ_FILES = pam_errors.o
70
71 #######################
72 # Start SUBSYSTEM auth
73 [SUBSYSTEM::auth]
74 PUBLIC_HEADERS = auth.h
75 PUBLIC_PROTO_HEADER = auth_proto.h
76 OBJ_FILES = \
77                 auth.o \
78                 auth_util.o \
79                 auth_sam_reply.o \
80                 ntlm_check.o \
81                 auth_simple.o
82 REQUIRED_SUBSYSTEMS = LIB_SECURITY process_model
83 # End SUBSYSTEM auth
84 #######################