summaryrefslogtreecommitdiffstats
path: root/src/external
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-11-19 10:41:06 -0500
committerJakub Hrozek <jhrozek@redhat.com>2012-11-20 09:02:50 +0100
commitff4e9f4d59368004b3917a86dc82c24deb47d905 (patch)
treedad9cdd79941863ba08bb7fc479840feb5f40431 /src/external
parent9459006424bb9975b8728c7700605f9b061c791e (diff)
downloadsssd-ff4e9f4d59368004b3917a86dc82c24deb47d905.tar.gz
sssd-ff4e9f4d59368004b3917a86dc82c24deb47d905.tar.xz
sssd-ff4e9f4d59368004b3917a86dc82c24deb47d905.zip
BUILD: Temporary workaround for Kerberos build
This patch extends the Kerberos version check to support Kerberos version 1.11 alpha and later. It is a temporary measure until we can redesign the configure checks for better granularity.
Diffstat (limited to 'src/external')
-rw-r--r--src/external/pac_responder.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/src/external/pac_responder.m4 b/src/external/pac_responder.m4
index 0aadd40b2..733241a13 100644
--- a/src/external/pac_responder.m4
+++ b/src/external/pac_responder.m4
@@ -19,13 +19,14 @@ then
KRB5_VERSION="`$KRB5_CONFIG --version`"
case $KRB5_VERSION in
Kerberos\ 5\ release\ 1.9* | \
- Kerberos\ 5\ release\ 1.10*)
+ Kerberos\ 5\ release\ 1.10* | \
+ Kerberos\ 5\ release\ 1.11*)
krb5_version_ok=yes
AC_MSG_RESULT(yes)
;;
*)
AC_MSG_WARN([Cannot build authdata plugin with this version of
- MIT Kerberos, please use 1.9.x or 1.10.x])
+ MIT Kerberos, please use 1.9.x or later])
esac
fi