mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
594e316181
With waf build include directories are defined by dependencies specified to subsystems. Without proper dependency <gssapi/gssapi.h> cannot be found for embedded Heimdal builds when there are no system-wide gssapi/gssapi.h available. Split out GSSAPI header includes in a separate replacement header and use that explicitly where needed. Autobuild-User: Alexander Bokovoy <ab@samba.org> Autobuild-Date: Wed Apr 25 00:18:33 CEST 2012 on sn-devel-104
27 lines
807 B
Python
Executable File
27 lines
807 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
bld.SAMBA_SUBSYSTEM('KRB_INIT_CTX',
|
|
source='krb5_init_context.c',
|
|
deps='gssapi krb5samba'
|
|
)
|
|
|
|
bld.SAMBA_LIBRARY('authkrb5',
|
|
source='kerberos.c kerberos_heimdal.c kerberos_pac.c keytab_copy.c',
|
|
autoproto='proto.h',
|
|
public_deps='ndr-krb5pac krb5samba samba_socket LIBCLI_RESOLVE asn1',
|
|
deps='auth_sam_reply tevent LIBPACKET ndr ldb krb5samba KRB_INIT_CTX KRB5_PAC errors',
|
|
private_library=True
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('KERBEROS_UTIL',
|
|
autoproto='kerberos_util.h',
|
|
source='kerberos_util.c',
|
|
deps='authkrb5 com_err CREDENTIALS_KRB5',
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('KERBEROS_SRV_KEYTAB',
|
|
autoproto='kerberos_srv_keytab.h',
|
|
source='srv_keytab.c',
|
|
deps='authkrb5',
|
|
)
|