mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
88d5d5c4b4
This is clearly a utiliy function generic to gensec. Also the 3 callers had identical implementations. Provide a generic implementation for all of them and avoid duplicating the code everywhere. Signed-off-by: Andreas Schneider <asn@samba.org>
19 lines
526 B
Python
Executable File
19 lines
526 B
Python
Executable File
#!/usr/bin/env python
|
|
bld.SAMBA_LIBRARY('gensec',
|
|
source='gensec.c gensec_start.c gensec_util.c',
|
|
pc_files='gensec.pc',
|
|
autoproto='gensec_toplevel_proto.h',
|
|
public_deps='tevent-util samba-util errors LIBPACKET auth_system_session samba-modules gensec_util asn1util',
|
|
public_headers='gensec.h',
|
|
deps='com_err',
|
|
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'
|
|
)
|