mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
045e3445a0
this fixes some double linking. The name 'KERBEROS' was also a bit confusing, as it sounded like a base kerberos library, when it is in fact part of auth
17 lines
595 B
Python
17 lines
595 B
Python
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('authkrb5',
|
|
source='kerberos.c clikrb5.c kerberos_heimdal.c kerberos_pac.c gssapi_parse.c krb5_init_context.c keytab_copy.c',
|
|
autoproto='proto.h',
|
|
public_deps='krb5 NDR_KRB5PAC samba_socket LIBCLI_RESOLVE com_err',
|
|
deps='ASN1_UTIL auth_sam_reply tevent LIBPACKET ndr',
|
|
private_library=True
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('KERBEROS_UTIL',
|
|
autoproto='kerberos_util.h',
|
|
source='kerberos_util.c',
|
|
deps='authkrb5 com_err ldb CREDENTIALS_KRB5 SECRETS',
|
|
)
|
|
|