1 conf.RECURSE('third_party/heimdal_build')
3 heimdal_includedirs = []
5 krb5_config = conf.find_program("krb5-config.heimdal", var="HEIMDAL_KRB5_CONFIG")
7 krb5_config = conf.find_program("krb5-config", var="HEIMDAL_KRB5_CONFIG")
9 # Not ideal, but seems like the best way to get at these paths:
10 f = open(krb5_config[0], 'r')
13 if l.startswith("libdir="):
14 heimdal_libdirs.append(l.strip()[len("libdir="):])
15 elif l.startswith("includedir="):
16 include_path = l.strip()[len("includedir="):]
17 heimdal_includedirs.append(include_path)
18 conf.ADD_EXTRA_INCLUDES(include_path)
19 conf.define('HEIMDAL_KRB5_TYPES_PATH',
20 include_path + "/krb5-types.h")
24 def check_system_heimdal_lib(name, functions='', headers=''):
25 # Only use system library if the user requested the bundled one not be
27 if conf.LIB_MAY_BE_BUNDLED(name):
29 setattr(conf.env, "CPPPATH_%s" % name.upper(), heimdal_includedirs)
30 setattr(conf.env, "LIBPATH_%s" % name.upper(), heimdal_libdirs)
31 if not conf.CHECK_FUNCS_IN(functions, name, headers=headers, empty_decl=False, set_target=True):
33 conf.define('USING_SYSTEM_%s' % name.upper(), 1)
36 check_system_heimdal_lib("com_err", "com_right_r com_err", "com_err.h")
38 # Make sure HAVE_CONFIG_H is unset, as the system Heimdal headers use it
39 # and include config.h if it is set, resulting in failure (since config.h
42 DEFINES = list(conf.env.DEFINES)
43 conf.undefine("HAVE_CONFIG_H")
44 while "HAVE_CONFIG_H=1" in conf.env.DEFINES:
45 conf.env.DEFINES.remove("HAVE_CONFIG_H=1")
47 check_system_heimdal_lib("asn1", "decode_Ticket", "krb5_asn1.h")
48 if check_system_heimdal_lib("krb5", "krb5_anyaddr", "krb5.h"):
49 conf.CHECK_FUNCS_IN('krb5_free_unparsed_name', 'krb5', headers="krb5.h")
50 check_system_heimdal_lib("gssapi", "gss_oid_to_name", "gssapi.h")
52 conf.env.DEFINES = DEFINES
54 # With the proper checks in place we should be able to build against the system libtommath.
55 #if conf.CHECK_BUNDLED_SYSTEM('tommath', checkfunctions='mp_init', headers='tommath.h'):
56 # conf.define('USING_SYSTEM_TOMMATH', 1)
58 conf.env.KRB5_VENDOR = 'heimdal'
59 conf.define('USING_SYSTEM_KRB5', 1)
60 conf.define('USING_SYSTEM_HEIMDAL', 1)
63 krb5_get_init_creds_opt_set_fast_ccache
64 krb5_get_init_creds_opt_set_fast_flags