summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorKevin Coffman <kwc@citi.umich.edu>2007-04-24 12:26:55 -0400
committerNeil Brown <neilb@suse.de>2007-05-03 09:37:18 +1000
commit4cfb608c949d3f38d9d5bc2c3c8aef268b88a697 (patch)
tree90f4e46e8cae46775ecf4cd620bb0ca594380099 /aclocal
parent6080a2854af9c12a5794a389e98f0cd4d3942a6c (diff)
downloadnfs-utils-4cfb608c949d3f38d9d5bc2c3c8aef268b88a697.tar.gz
nfs-utils-4cfb608c949d3f38d9d5bc2c3c8aef268b88a697.tar.xz
nfs-utils-4cfb608c949d3f38d9d5bc2c3c8aef268b88a697.zip
Always get addressless tickets
Make sure we get addressless tickets so we can function behind a NAT. (Must use a different function to accomplish this with Heimdal.) Signed-off-by: Kevin Coffman <kwc@citi.umich.edu> Signed-off-by: Neil Brown <neilb@suse.de>
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/kerberos5.m44
1 files changed, 4 insertions, 0 deletions
diff --git a/aclocal/kerberos5.m4 b/aclocal/kerberos5.m4
index 2475f50..dfa5738 100644
--- a/aclocal/kerberos5.m4
+++ b/aclocal/kerberos5.m4
@@ -97,6 +97,10 @@ AC_DEFUN([AC_KERBEROS_V5],[
AC_CHECK_LIB($gssapi_lib, krb5_get_error_message,
AC_DEFINE(HAVE_KRB5_GET_ERROR_MESSAGE, 1, [Define this if the function krb5_get_error_message is available]), ,$KRBLIBS)
+ dnl Check for function to specify addressless tickets
+ AC_CHECK_LIB($gssapi_lib, krb5_get_init_creds_opt_set_addressless,
+ AC_DEFINE(HAVE_KRB5_GET_INIT_CREDS_OPT_SET_ADDRESSLESS, 1, [Define this if the function krb5_get_init_creds_opt_set_addressless is available]), ,$KRBLIBS)
+
dnl If they specified a directory and it didn't work, give them a warning
if test "x$krb5_with" != "x" -a "$krb5_with" != "$KRBDIR"; then
AC_MSG_WARN(Using $KRBDIR instead of requested value of $krb5_with for Kerberos!)