Displaying 2 results from an estimated 2 matches for "krb5root".
2005 Nov 12
1
[PATCH] Use krb5-config if avaialable for Kerberos parameters
...ov 2005 07:42:37 -0000 1.307
+++ configure.ac 12 Nov 2005 08:25:35 -0000
@@ -2812,19 +2812,25 @@ AC_ARG_WITH(kerberos5,
[ --with-kerberos5=PATH Enable Kerberos 5 support],
[ if test "x$withval" != "xno" ; then
if test "x$withval" = "xyes" ; then
- KRB5ROOT="/usr/local"
+ # Check for a krb5-config in the path, if found use it
+ AC_PATH_PROG(KRB5CONF, krb5-config)
+ if test -x "$KRB5CONF" ; then
+ KRB5ROOT="`$KRB5CONF --path`"
+ else
+ KRB5ROOT="/usr/local"
+ KRB5CONF="/usr/local/bin/krb5-co...
2004 Feb 13
2
OpenSSH-snap-20040212 and the use of krb5-config
With openssh-snap-20040212 the configure.ac when it finds a
krb5-config file, does not call the AC_DEFINE(GSSAPI) or
AC_CHECK_HEADER(gssapi.h...) This means that GSSAPI and HAVE_GSSAPI_H
are not defined, and thus GSSAPI is not built.
If I rename the kerberos provided krb5-config file and run configure,
the old method of finding the Kerberos lib and include directories
is used and OpenSSH