ffdec57ae7
Mon Jun 07 2004 Nalin Dahyabhai <nalin@redhat.com> 3.8.1p1-1 - request gssapi-with-mic by default but not delegation (flag day for anyone who used previous gssapi patches) - no longer request x11 forwarding by default
17 lines
578 B
Diff
17 lines
578 B
Diff
Search the path for krb5-config if the prefix wasn't specified.
|
|
--- openssh-3.8p1/configure.ac 2004-02-26 21:17:12.000000000 -0500
|
|
+++ openssh-3.8p1/configure.ac 2004-02-26 21:17:06.000000000 -0500
|
|
@@ -2077,8 +2077,10 @@
|
|
KRB5_MSG="yes"
|
|
|
|
AC_MSG_CHECKING(for krb5-config)
|
|
- if test -x $KRB5ROOT/bin/krb5-config ; then
|
|
- KRB5CONF=$KRB5ROOT/bin/krb5-config
|
|
+ AC_PATH_PROG([KRB5CONF],[krb5-config],
|
|
+ [$KRB5ROOT/bin/krb5-config],
|
|
+ [$KRB5ROOT/bin:$PATH])
|
|
+ if test -x $KRB5CONF ; then
|
|
AC_MSG_RESULT($KRB5CONF)
|
|
|
|
AC_MSG_CHECKING(for gssapi support)
|