diff options
author | Sumit Bose <sbose@redhat.com> | 2012-10-15 13:24:28 +0200 |
---|---|---|
committer | Sumit Bose <sbose@redhat.com> | 2012-10-26 10:32:05 +0200 |
commit | 7219ef88751bb05edd77629b8068330bb6d9b117 (patch) | |
tree | 02d3578662c3add07ac5aca9e1044fe1a08541c7 /src/external | |
parent | 28269b2c1fa38e4579853b7afbe30381a8ab8912 (diff) | |
download | sssd-7219ef88751bb05edd77629b8068330bb6d9b117.tar.gz sssd-7219ef88751bb05edd77629b8068330bb6d9b117.tar.bz2 sssd-7219ef88751bb05edd77629b8068330bb6d9b117.zip |
Add replacement for krb5_find_authdata()
krb5_find_authdata() is only available in MIT Kerberos 1.10 or higher.
To allow sssd to be compiled on platform with lower version of MIT
Kerberos a replacement call is added. Please note that on those
platform the replacement call will only return an error. If the
krb5_find_authdata functionality is really needed on those platform it
must be implemented by a different patch.
Diffstat (limited to 'src/external')
-rw-r--r-- | src/external/krb5.m4 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/external/krb5.m4 b/src/external/krb5.m4 index cb420aae..5bc87112 100644 --- a/src/external/krb5.m4 +++ b/src/external/krb5.m4 @@ -60,6 +60,7 @@ AC_CHECK_FUNCS([krb5_get_init_creds_opt_alloc krb5_get_error_message \ krb5_cc_cache_match \ krb5_timestamp_to_sfstring \ krb5_set_trace_callback \ + krb5_find_authdata \ krb5_cc_get_full_name]) CFLAGS=$SAVE_CFLAGS LIBS=$SAVE_LIBS |