search for: rsh_path

Displaying 9 results from an estimated 9 matches for "rsh_path".

2002 Jun 24
1
remove --with-rsh
...penssh/acconfig.h,v retrieving revision 1.138 diff -u -r1.138 acconfig.h --- acconfig.h 12 Jun 2002 16:57:15 -0000 1.138 +++ acconfig.h 24 Jun 2002 00:50:20 -0000 @@ -228,9 +228,6 @@ /* Define if xauth is found in your path */ #undef XAUTH_PATH -/* Define if rsh is found in your path */ -#undef RSH_PATH - /* Define if you want to allow MD5 passwords */ #undef HAVE_MD5_PASSWORDS Index: configure.ac =================================================================== RCS file: /var/cvs/openssh/configure.ac,v retrieving revision 1.68 diff -u -r1.68 configure.ac --- configure.ac 22 Jun 2002 18:51:4...
2001 Feb 26
0
RPM .spec files: rsh requirement removed
...been there from OpenSSH 2.1.1p4 era or so because back then, if configure couldn't find /usr/bin/rsh, it wouldn't be defined at all (see below). Also, FallBackToRsh isn't enabled by default so this shouldn't be a problem. defines.h back long time ago: --- #ifndef _PATH_RSH # ifdef RSH_PATH # define _PATH_RSH RSH_PATH # endif /* RSH_PATH */ #endif /* _PATH_RSH */ --- Ie: no fallback to /usr/bin/rsh. Nowadays, this has been: --- #ifndef _PATH_RSH # ifdef RSH_PATH # define _PATH_RSH RSH_PATH # else /* RSH_PATH */ # define _PATH_RSH "/usr/bin/rsh" # endif /* RSH_PATH */ #...
2000 Nov 09
2
SCO Openserver Patch
...ANLIB=true cat >> confdefs.h <<\EOF @@ -1703,11 +1703,12 @@ LDFLAGS="$LDFLAGS -L/usr/local/lib" MANTYPE='$(CATMAN)' mansubdir=cat - LIBS="$LIBS -lgen -lsocket -lprot -lx" + LIBS="$LIBS -lgen -lsocket -lprot -lx -ltinfo -lm" no_dev_ptmx=1 rsh_path="/usr/bin/rcmd" cat >> confdefs.h <<\EOF #define HAVE_SCO_PROTECTED_PW 1 +#define DISABLE_SHADOW 1 EOF ;; -- Phillip P. Porch <root at sco.theporch.com> NIC:PP1573 finger for http://www.theporch.com UTM - 16 514546E 3994565N GnuPG key
2001 Jun 18
2
Patch for changing expired passwords
...uot;); + } + log(msg, user); + packet_send_debug(msg, user); + } + if (s->ttyfd != -1) do_exec_pty(s, command); else *** configure.in.O Sun Jun 10 12:24:52 2001 --- configure.in Mon Jun 18 14:27:23 2001 *************** *** 1304,1309 **** --- 1304,1313 ---- AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path") fi + AC_PATH_PROG(PASSWD_PATH, passwd) + AC_DEFINE_UNQUOTED(PASSWD_PATH, "$PASSWD_PATH") + + # Check for mail directory (last resort if we cannot get it from headers) if test ! -z "$MAIL" ; then maildir=`dirname $MAIL` *** acconfig.h.O Tue M...
2001 Oct 08
1
Ported OpenSSH 2.9.9p2 to Dynix
...*************** *** 1960,1965 **** --- 1960,1985 ---- LIBS="$LIBS -lgen -lnsl -lucb" ;; + *-sequent-sysv4*) + CPPFLAGS="$CPPFLAGS -I/usr/local/include" + LDFLAGS="$LDFLAGS -L/usr/local/lib" + LIBS="$LIBS -lnsl -lsec" + rsh_path="/usr/bin/resh" + conf_utmpx_location="/var/adm/utmpx" + cat >> confdefs.h <<\EOF + #define USE_PIPES 1 + EOF + + cat >> confdefs.h <<\EOF + #define BROKEN_SAVED_UIDS 1 + EOF + + cat >> confdefs.h <<\EOF + #define LOGIN...
2000 Jul 03
0
Openssh-2.1.1p2: configure option "--with-rsh="
Hi! Openssh-2.2.1p2: In configure:4348 the path given with the "--with-rsh' option to configure is assigned to rsa_path=$withval Probably this should be rsh_path=$withval Best regards, Lutz -- Lutz Jaenicke Lutz.Jaenicke at aet.TU-Cottbus.DE BTU Cottbus http://www.aet.TU-Cottbus.DE/personen/jaenicke/ Lehrstuhl Allgemeine Elektrotechnik Tel. +49 355 69-4129 Universitaetsplatz 3-4, D-03044 Cottbus...
2000 Dec 27
3
OpenSSH 2.4.0 patch call..
I spoke with Markus before Christmas (I hope all your holidays were better then mine.. But that's another topic. Car are evil.=) and he would like to release 2.4.0 in the very near future. Is there any undisputed patches still out not applied to the current portable CVS tree? (BTW, I just applied the getrlimit patch from Corinna.) - Ben
2001 Oct 12
17
Please test snapshots for 3.0 release
Could everyone please test the latest snapshots as we will be making a new release soon. If you have any patches you would like us to consider, please resend them to the list ASAP. -d -- | Damien Miller <djm at mindrot.org> \ ``E-mail attachments are the poor man's | http://www.mindrot.org / distributed filesystem'' - Dan Geer
2001 Feb 07
2
Patch for unformatted manpages
...fo -lm" no_dev_ptmx=1 RANLIB=true @@ -224,8 +201,6 @@ AC_DEFINE(USE_PIPES) CPPFLAGS="$CPPFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" - MANTYPE='$(CATMAN)' - mansubdir=cat LIBS="$LIBS -lprot -lx -ltinfo -lm" no_dev_ptmx=1 rsh_path="/usr/bin/rcmd" @@ -1117,25 +1092,6 @@ AC_SUBST(INSTALL_SSH_PRNG_CMDS) -AC_ARG_WITH(catman, - [ --with-catman=man|cat Install preformatted manpages[no]], - [ - MANTYPE='$(CATMAN)' - if test x"$withval" != x"yes" ; then - mansubdir=$withval - else...