search for: krb5_msg

Displaying 7 results from an estimated 7 matches for "krb5_msg".

Did you mean: krb4_msg
2008 Feb 04
0
configure/makefile cleanup: remove LIBSELINUX, LIBWRAP and LIBPAM
...h_level) This breaks AC_CHECK_FUNCS :( If LIBS doesn't have $LIBSELINUX it will always fail to find getseuserbyname get_default_context_with_level. > LIBS="$save_LIBS" > fi ] > ) > -AC_SUBST(LIBSELINUX) > > # Check whether user wants Kerberos 5 support > KRB5_MSG="no" <snip> This patch adds -lselinux to LIBS during the check for getseuserbyname get_default_context_with_level. Thanks, Caleb --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: openssh/configure.ac ==============================================...
2005 Nov 12
1
[PATCH] Use krb5-config if avaialable for Kerberos parameters
...ROOT="`$KRB5CONF --path`" + else + KRB5ROOT="/usr/local" + KRB5CONF="/usr/local/bin/krb5-config" + fi else KRB5ROOT=${withval} + KRB5CONF="${withval}/bin/krb5-config" fi AC_DEFINE(KRB5, 1, [Define if you want Kerberos 5 support]) KRB5_MSG="yes" - AC_MSG_CHECKING(for krb5-config) - if test -x $KRB5ROOT/bin/krb5-config ; then - KRB5CONF=$KRB5ROOT/bin/krb5-config - AC_MSG_RESULT($KRB5CONF) - + AC_MSG_CHECKING(if $KRB5CONF is usable) + if test -x "$KRB5CONF" ; then + AC_MSG_RESULT(yes) AC_MSG_CHECKIN...
2007 Mar 24
0
configure/makefile cleanup: remove LIBSELINUX, LIBWRAP and LIBPAM
...ary)) - save_LIBS="$LIBS" - LIBS="$LIBS $LIBSELINUX" + SSHDLIBS="$SSHDLIBS $LIBSELINUX" AC_CHECK_FUNCS(getseuserbyname get_default_context_with_level) LIBS="$save_LIBS" fi ] ) -AC_SUBST(LIBSELINUX) # Check whether user wants Kerberos 5 support KRB5_MSG="no" @@ -4005,7 +4002,10 @@ echo " Compiler: ${CC}" echo " Compiler flags: ${CFLAGS}" echo "Preprocessor flags: ${CPPFLAGS}" echo " Linker flags: ${LDFLAGS}" -echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}" +ech...
2004 Sep 07
0
Please review openssh patch for selinux
...elinux, + [ --with-selinux Enable SELinux support], + [ if test "x$withval" != "xno" ; then + AC_DEFINE(WITH_SELINUX) + SELINUX_MSG="yes" + AC_CHECK_HEADERS(selinux.h) + LIBS="$LIBS -lselinux" + fi + ]) + # Check whether user wants Kerberos 5 support KRB5_MSG="no" AC_ARG_WITH(kerberos5, @@ -2973,6 +2985,7 @@ echo " Manpage format: $MANTYPE" echo " PAM support: $PAM_MSG" echo " KerberosV support: $KRB5_MSG" +echo " SELinux support:...
2002 Jul 01
3
patch: readline support for sftp
..." Manpage format: $MANTYPE" +echo " readline support: $READLINE" echo " PAM support: ${PAM_MSG}" echo " KerberosIV support: $KRB4_MSG" echo " KerberosV support: $KRB5_MSG" @@ -2423,6 +2471,7 @@ echo "Preprocessor flags: ${CPPFLAGS}" echo " Linker flags: ${LDFLAGS}" echo " Libraries: ${LIBWRAP} ${LIBPAM} ${LIBS}" +echo " sftp libraries: ${SFTPLIB} ${LIBS}" echo "" diff -Nru openssh-3.4p1/s...
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...cho " Manpage format: $MANTYPE" echo " PAM support: $PAM_MSG" +echo " SCTP support: $SCTP_MSG" echo " OSF SIA support: $SIA_MSG" echo " KerberosV support: $KRB5_MSG" echo " SELinux support: $SELINUX_MSG" diff --git a/misc.c b/misc.c index e4c8c32..843ccd4 100644 --- a/misc.c +++ b/misc.c @@ -42,6 +42,9 @@ #include <netinet/in_systm.h> #include <netinet/ip.h> #include <netinet/tcp.h> +#ifdef USE_SCTP +# inc...
2020 Jul 21
11
[RFC PATCH 0/4] PAM module for ssh-agent user authentication
Hi, The main (and probably the only) use case of this PAM module is to let sudo authenticate users via their ssh-agent, therefore without having to type any password and without being tempted to use the NOPASSWD sudo option for such convenience. The principle is originally implemented by an existing module [0][1] and many pages that explain how to use it for such purpose can be found online.