blob: 16ed3ed9ed807dae385f47ff8a165252fca25296 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from waflib import Logs
Logs.info("\tSelected system Heimdal build")
# Alias subsystem to allow common kerberos code that will
# otherwise link against MIT's gssapi_krb5 and k5crypto
#
# Note: that we also need this if we use system heimdal libraries
bld.SAMBA_SUBSYSTEM('gssapi_krb5', '', deps='gssapi')
bld.SAMBA_SUBSYSTEM('k5crypto', '', deps='krb5')
|