mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
s4-credentials: make a private library from CREDENTIALS subsystem
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
@ -1,21 +1,22 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('CREDENTIALS',
|
||||
source='credentials.c',
|
||||
autoproto='credentials_proto.h',
|
||||
public_headers='credentials.h',
|
||||
deps='LIBCRYPTO errors events LIBCLI_AUTH security',
|
||||
)
|
||||
bld.SAMBA_LIBRARY('CREDENTIALS',
|
||||
source='credentials.c',
|
||||
autoproto='credentials_proto.h',
|
||||
public_headers='credentials.h',
|
||||
deps='LIBCRYPTO errors events LIBCLI_AUTH security CREDENTIALS_SECRETS CREDENTIALS_KRB5',
|
||||
private_library=True
|
||||
)
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('CREDENTIALS_KRB5',
|
||||
source='credentials_krb5.c',
|
||||
deps='KERBEROS_UTIL gssapi CREDENTIALS',
|
||||
public_deps='com_err KERBEROS',
|
||||
public_deps='com_err authkrb5',
|
||||
)
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('CREDENTIALS_SECRETS',
|
||||
source='credentials_secrets.c',
|
||||
deps='SECRETS CREDENTIALS_KRB5 CREDENTIALS_NTLM ldb',
|
||||
deps='CREDENTIALS_KRB5 CREDENTIALS_NTLM ldb samdb-common',
|
||||
)
|
||||
|
||||
bld.SAMBA_SUBSYSTEM('CREDENTIALS_NTLM',
|
||||
|
Reference in New Issue
Block a user