summaryrefslogtreecommitdiff
path: root/source4/auth/gensec/wscript_build
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-12-28 17:48:45 +1100
committerAndrew Bartlett <abartlet@samba.org>2011-12-29 01:10:58 +0100
commit149f8f16be79dc9d142971fb74633cfc5b186840 (patch)
treef13e1a8f8b7c58f659330dc8ceb0a20e4fa0448c /source4/auth/gensec/wscript_build
parentfc226f81c6c14b1afc9b98692463ff1e2f9b2464 (diff)
downloadsamba-149f8f16be79dc9d142971fb74633cfc5b186840.tar.gz
samba-149f8f16be79dc9d142971fb74633cfc5b186840.tar.bz2
samba-149f8f16be79dc9d142971fb74633cfc5b186840.zip
s4-gensec: Move parsing of the PAC blob and creating the session_info into auth
This uses a single callback to handle the PAC from the DATA_BLOB format until it becomes a struct auth_session_info. This allows a seperation between the GSS acceptor code and the PAC interpretation code based on the supplied auth context. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Thu Dec 29 01:10:59 CET 2011 on sn-devel-104
Diffstat (limited to 'source4/auth/gensec/wscript_build')
-rw-r--r--source4/auth/gensec/wscript_build6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build
index 86d958950f..a4c5685f2e 100644
--- a/source4/auth/gensec/wscript_build
+++ b/source4/auth/gensec/wscript_build
@@ -2,14 +2,14 @@
bld.SAMBA_SUBSYSTEM('gensec_util',
source='socket.c gensec_tstream.c gensec_util.c',
- deps='tevent-util tevent samba-util LIBTSOCKET',
+ deps='tevent-util tevent samba-util LIBTSOCKET KERBEROS_UTIL',
autoproto='gensec_proto.h')
bld.SAMBA_MODULE('gensec_krb5',
source='gensec_krb5.c',
subsystem='gensec',
init_function='gensec_krb5_init',
- deps='samba-credentials authkrb5 auth_session com_err',
+ deps='samba-credentials authkrb5 auth_session com_err gensec_util',
internal_module=False,
)
@@ -18,7 +18,7 @@ bld.SAMBA_MODULE('gensec_gssapi',
source='gensec_gssapi.c',
subsystem='gensec',
init_function='gensec_gssapi_init',
- deps='gssapi samba-credentials authkrb5 com_err'
+ deps='gssapi samba-credentials authkrb5 com_err gensec_util'
)