From: Günther Deschner Date: Wed, 18 Sep 2013 15:24:10 +0000 (+0200) Subject: gensec: move schannel module to toplevel. X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=4d2ec9e37ee9dcf7b521806a1c0aabdffe524d47;p=kai%2Fsamba.git gensec: move schannel module to toplevel. Guenther Signed-off-by: Günther Deschner Pair-Programmed-With: Andreas Schneider Reviewed-by: Stefan Metzmacher --- diff --git a/source4/auth/gensec/schannel.c b/auth/gensec/schannel.c similarity index 100% rename from source4/auth/gensec/schannel.c rename to auth/gensec/schannel.c diff --git a/auth/gensec/wscript_build b/auth/gensec/wscript_build index 71222f7b262..7329eec99ee 100755 --- a/auth/gensec/wscript_build +++ b/auth/gensec/wscript_build @@ -17,6 +17,14 @@ bld.SAMBA_MODULE('gensec_spnego', deps='asn1util samba-credentials SPNEGO_PARSE' ) +bld.SAMBA_MODULE('gensec_schannel', + source='schannel.c', + autoproto='schannel_proto.h', + subsystem='gensec', + init_function='gensec_schannel_init', + deps='COMMON_SCHANNEL NDR_SCHANNEL samba-credentials auth_session' + ) + bld.SAMBA_MODULE('gensec_external', source='external.c', autoproto='external_proto.h', diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build index 04fccc5171c..a3eff978c3c 100755 --- a/source4/auth/gensec/wscript_build +++ b/source4/auth/gensec/wscript_build @@ -32,16 +32,6 @@ bld.SAMBA_MODULE('cyrus_sasl', ) -bld.SAMBA_MODULE('gensec_schannel', - source='schannel.c', - subsystem='gensec', - deps='COMMON_SCHANNEL NDR_SCHANNEL samba-credentials ndr auth_session', - internal_module=True, - autoproto='schannel_proto.h', - init_function='gensec_schannel_init' - ) - - bld.SAMBA_PYTHON('pygensec', source='pygensec.c', deps='gensec pytalloc-util pyparam_util',