summaryrefslogtreecommitdiffstats
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:03:45 +0100
commit1523b8a974faf70a55ef953c82b04ecf2a760e46 (patch)
treeefc19e15d45a9c94d0f4c367bae3ecd346e68c23
parent0d20b3f4a2dad23314b6781a18305a9129f8ae4a (diff)
downloadsssd-1523b8a974faf70a55ef953c82b04ecf2a760e46.tar.gz
sssd-1523b8a974faf70a55ef953c82b04ecf2a760e46.tar.xz
sssd-1523b8a974faf70a55ef953c82b04ecf2a760e46.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.
-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