summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneilbrown <neilbrown>2006-03-26 23:50:44 +0000
committerneilbrown <neilbrown>2006-03-26 23:50:44 +0000
commit7fa72fa86d16767fcd0c23f21199c943ae7a26ce (patch)
tree06c176123e4543557cc34078e4f73e63a92cbc95
parent8c6856695f2cd31b96b72ee4412c36f72a333e0c (diff)
downloadnfs-utils-7fa72fa86d16767fcd0c23f21199c943ae7a26ce.tar.gz
Find krb5-config on SuSE 10
SuSE 10.0 puts krb5-config in yet another obscure location. Look for it there and use it if found.
-rw-r--r--ChangeLog6
-rw-r--r--aclocal/kerberos5.m42
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index baf12d1..4836d5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-27 kwc@citi.umich.edu
+ Find krb5-config on SuSE 10
+
+ SuSE 10.0 puts krb5-config in yet another obscure location.
+ Look for it there and use it if found.
+
2006-03-27 Kevin Coffman <kwc@citi.umich.edu>
Update debian package information.
diff --git a/aclocal/kerberos5.m4 b/aclocal/kerberos5.m4
index 44e99b0..45e220f 100644
--- a/aclocal/kerberos5.m4
+++ b/aclocal/kerberos5.m4
@@ -26,6 +26,8 @@ AC_DEFUN([AC_KERBEROS_V5],[
K5CONFIG=$dir/bin/krb5-config
elif test -f "/usr/kerberos/bin/krb5-config"; then
K5CONFIG="/usr/kerberos/bin/krb5-config"
+ elif test -f "/usr/lib/mit/bin/krb5-config"; then
+ K5CONFIG="/usr/lib/mit/bin/krb5-config"
fi
if test "$K5CONFIG" != ""; then
KRBCFLAGS=`$K5CONFIG --cflags`