diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-02-24 13:00:52 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-02-24 15:08:50 +1100 |
commit | 74947964d915890adc524ca279ca95d96c4e8e34 (patch) | |
tree | edc8c37fcb997755aa45eed8cd3a7134dde6b280 | |
parent | 9e93dacfc6020deab9f15353ae32512a58e7b4b8 (diff) | |
download | samba-74947964d915890adc524ca279ca95d96c4e8e34.tar.gz |
build: moved spnego_parse.c into a common subsystem
-rw-r--r-- | libcli/auth/wscript_build | 6 | ||||
-rw-r--r-- | source3/wscript_build | 4 | ||||
-rw-r--r-- | source4/auth/gensec/wscript_build | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/libcli/auth/wscript_build b/libcli/auth/wscript_build index 3d9e8e6283c..0f0e22ba91d 100644 --- a/libcli/auth/wscript_build +++ b/libcli/auth/wscript_build @@ -2,7 +2,7 @@ bld.SAMBA_LIBRARY('cliauth', source='', - deps='NTLMSSP_COMMON MSRPC_PARSE LIBCLI_AUTH COMMON_SCHANNEL PAM_ERRORS', + deps='NTLMSSP_COMMON MSRPC_PARSE LIBCLI_AUTH COMMON_SCHANNEL PAM_ERRORS SPNEGO_PARSE', private_library=True, grouping_library=True) @@ -34,3 +34,7 @@ bld.SAMBA_SUBSYSTEM('PAM_ERRORS', source='pam_errors.c', deps='talloc' ) + +bld.SAMBA_SUBSYSTEM('SPNEGO_PARSE', + source='spnego_parse.c', + deps='ASN1_UTIL') diff --git a/source3/wscript_build b/source3/wscript_build index 0008bd016e2..1347574331a 100644 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -928,10 +928,6 @@ bld.SAMBA3_SUBSYSTEM('SLCACHE', source=SLCACHE_SRC, vars=locals()) -bld.SAMBA3_SUBSYSTEM('SPNEGO_PARSE', - source='../libcli/auth/spnego_parse.c', - vars=locals()) - bld.SAMBA3_SUBSYSTEM('DCUTIL', source=DCUTIL_SRC, vars=locals()) diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build index 01b3ce9ee27..8f8a6e84c7b 100644 --- a/source4/auth/gensec/wscript_build +++ b/source4/auth/gensec/wscript_build @@ -37,11 +37,11 @@ bld.SAMBA_MODULE('cyrus_sasl', bld.SAMBA_MODULE('gensec_spnego', - source='spnego.c ../../../libcli/auth/spnego_parse.c', + source='spnego.c', autoproto='spnego_proto.h', subsystem='gensec', init_function='gensec_spnego_init', - deps='ASN1_UTIL credentials' + deps='ASN1_UTIL credentials SPNEGO_PARSE' ) |