diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-01-12 12:21:21 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-01-13 04:58:41 +0100 |
commit | 01f246e873ed15ce7eb9c7a523a5efbfa36c2496 (patch) | |
tree | d27128093707abdaa58a9f78fab0c159a62217e1 | |
parent | d88af2fe24bfc3a55cd2bbfc8898a8dd21cc7cda (diff) | |
download | samba-01f246e873ed15ce7eb9c7a523a5efbfa36c2496.tar.gz samba-01f246e873ed15ce7eb9c7a523a5efbfa36c2496.tar.bz2 samba-01f246e873ed15ce7eb9c7a523a5efbfa36c2496.zip |
auth/gensec: move spnego.c to the toplevel
metze
-rw-r--r-- | auth/gensec/spnego.c (renamed from source4/auth/gensec/spnego.c) | 2 | ||||
-rw-r--r-- | auth/gensec/wscript_build | 7 | ||||
-rw-r--r-- | source4/auth/gensec/wscript_build | 9 |
3 files changed, 7 insertions, 11 deletions
diff --git a/source4/auth/gensec/spnego.c b/auth/gensec/spnego.c index 65738092f4..073496b8df 100644 --- a/source4/auth/gensec/spnego.c +++ b/auth/gensec/spnego.c @@ -27,8 +27,6 @@ #include "librpc/gen_ndr/ndr_dcerpc.h" #include "auth/credentials/credentials.h" #include "auth/gensec/gensec.h" -#include "auth/gensec/gensec_proto.h" -#include "auth/gensec/gensec_toplevel_proto.h" #include "param/param.h" #include "lib/util/asn1.h" diff --git a/auth/gensec/wscript_build b/auth/gensec/wscript_build index 03d97e6cc9..7ca3cab003 100644 --- a/auth/gensec/wscript_build +++ b/auth/gensec/wscript_build @@ -9,3 +9,10 @@ bld.SAMBA_LIBRARY('gensec', vnum='0.0.1' ) +bld.SAMBA_MODULE('gensec_spnego', + source='spnego.c', + autoproto='spnego_proto.h', + subsystem='gensec', + init_function='gensec_spnego_init', + deps='asn1util samba-credentials SPNEGO_PARSE' + ) diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build index 2eb49e6abc..dd25b23fdb 100644 --- a/source4/auth/gensec/wscript_build +++ b/source4/auth/gensec/wscript_build @@ -31,15 +31,6 @@ bld.SAMBA_MODULE('cyrus_sasl', ) -bld.SAMBA_MODULE('gensec_spnego', - source='spnego.c', - autoproto='spnego_proto.h', - subsystem='gensec', - init_function='gensec_spnego_init', - deps='asn1util samba-credentials SPNEGO_PARSE' - ) - - bld.SAMBA_MODULE('gensec_schannel', source='schannel.c', subsystem='gensec', |