diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-21 13:20:26 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-08-03 18:48:01 +1000 |
commit | 16b2118b4369f8204d86d5ad2eb117837da26789 (patch) | |
tree | d6d30eba2a3fe3d8d0ebc59782868e81b770a610 /source4/auth/gensec/wscript_build | |
parent | de71a67a1c442a72a7ab88674430b44d371c09d5 (diff) | |
download | samba-16b2118b4369f8204d86d5ad2eb117837da26789.tar.gz samba-16b2118b4369f8204d86d5ad2eb117837da26789.tar.bz2 samba-16b2118b4369f8204d86d5ad2eb117837da26789.zip |
gensec: split GENSEC into mechanism-dependent and runtime functions
The startup and runtime functions that have no dependencies are moved
into the top level.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/auth/gensec/wscript_build')
-rw-r--r-- | source4/auth/gensec/wscript_build | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build index 42d7dc5fd4..4eed751408 100644 --- a/source4/auth/gensec/wscript_build +++ b/source4/auth/gensec/wscript_build @@ -1,11 +1,10 @@ #!/usr/bin/env python bld.SAMBA_LIBRARY('gensec', - source='gensec.c socket.c gensec_tstream.c', + source='gensec_start.c socket.c gensec_tstream.c', pc_files='gensec.pc', autoproto='gensec_proto.h', - public_deps='UTIL_TEVENT samba-util errors LIBPACKET auth_system_session', - public_headers='gensec.h', + public_deps='UTIL_TEVENT samba-util errors LIBPACKET auth_system_session gensec_runtime', deps='com_err', vnum='0.0.1' ) |