mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
13f8674a15
there is a libsecurity on OSF1 which clasheѕ with our security lib. see bug #9023. Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Björn Jacke <bj@sernet.de> Autobuild-Date(master): Fri Aug 10 14:22:21 CEST 2012 on sn-devel-104
33 lines
947 B
Python
Executable File
33 lines
947 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_LIBRARY('samba-credentials',
|
|
source='credentials.c',
|
|
autoproto='credentials_proto.h',
|
|
public_headers='credentials.h',
|
|
pc_files='samba-credentials.pc',
|
|
deps='LIBCRYPTO errors events LIBCLI_AUTH samba-security CREDENTIALS_SECRETS CREDENTIALS_KRB5',
|
|
vnum='0.0.1'
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('CREDENTIALS_KRB5',
|
|
source='credentials_krb5.c',
|
|
deps='KERBEROS_SRV_KEYTAB KERBEROS_UTIL gssapi samba-credentials',
|
|
public_deps='com_err authkrb5',
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('CREDENTIALS_SECRETS',
|
|
source='credentials_secrets.c',
|
|
deps='CREDENTIALS_KRB5 CREDENTIALS_NTLM ldb SECRETS samdb-common dbwrap',
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('CREDENTIALS_NTLM',
|
|
source='credentials_ntlm.c',
|
|
deps='samba-credentials')
|
|
|
|
bld.SAMBA_PYTHON('pycredentials',
|
|
source='pycredentials.c',
|
|
public_deps='samba-credentials cmdline-credentials pytalloc-util pyparam_util CREDENTIALS_KRB5 CREDENTIALS_SECRETS',
|
|
realname='samba/credentials.so'
|
|
)
|
|
|