diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-11-26 02:25:20 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:46:14 +0100 |
commit | 4340fc2d9e9f84368818e774b0817b100eb57232 (patch) | |
tree | f0fb4f0433b74a4f55beeb0c24a8ee7c2f0bbbc3 /source4/auth/config.mk | |
parent | f5ceca42593642f739157f2cca0e7e2bb34a3de4 (diff) | |
download | samba-4340fc2d9e9f84368818e774b0817b100eb57232.tar.gz |
r26127: Move session code out of auth_util.c. No longer making it part of auth but making it usable independently will be the next step.
(This used to be commit b3fcb8e8103304fede865b02ca5169d5793a571d)
Diffstat (limited to 'source4/auth/config.mk')
-rw-r--r-- | source4/auth/config.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source4/auth/config.mk b/source4/auth/config.mk index 7a854a19a07..e9d5b7000c1 100644 --- a/source4/auth/config.mk +++ b/source4/auth/config.mk @@ -4,6 +4,14 @@ include kerberos/config.mk include ntlmssp/config.mk include credentials/config.mk +[SUBSYSTEM::auth_session] +OBJ_FILES = session.o +PUBLIC_PROTO_HEADER = session_proto.h + +[SUBSYSTEM::auth_system_session] +OBJ_FILES = system_session.o +PUBLIC_PROTO_HEADER = system_session_proto.h + [SUBSYSTEM::auth_sam] PRIVATE_PROTO_HEADER = auth_sam.h OBJ_FILES = sam.o auth_sam_reply.o ntlm_check.o @@ -71,6 +79,7 @@ OBJ_FILES = \ auth_util.o \ auth_simple.o PUBLIC_DEPENDENCIES = LIBSECURITY SAMDB CREDENTIALS +PRIVATE_DEPENDENCIES = auth_session auth_system_session # End SUBSYSTEM auth ####################### |