summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--INSTALL7
-rw-r--r--acconfig.h5
-rw-r--r--configure.ac18
-rw-r--r--defines.h10
5 files changed, 8 insertions, 37 deletions
diff --git a/ChangeLog b/ChangeLog
index f40ba0423..ec6e4726d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120020625
2 - (stevesk) [INSTALL acconfig.h configure.ac defines.h] remove --with-rsh
3
120020624 420020624
2 - OpenBSD CVS Sync 5 - OpenBSD CVS Sync
3 - deraadt@cvs.openbsd.org 2002/06/23 03:25:50 6 - deraadt@cvs.openbsd.org 2002/06/23 03:25:50
@@ -1082,4 +1085,4 @@
1082 - (stevesk) entropy.c: typo in debug message 1085 - (stevesk) entropy.c: typo in debug message
1083 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1086 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1084 1087
1085$Id: ChangeLog,v 1.2264 2002/06/23 21:49:25 mouring Exp $ 1088$Id: ChangeLog,v 1.2265 2002/06/24 16:26:49 stevesk Exp $
diff --git a/INSTALL b/INSTALL
index a7f73e648..07da06b56 100644
--- a/INSTALL
+++ b/INSTALL
@@ -105,11 +105,6 @@ name).
105 105
106There are a few other options to the configure script: 106There are a few other options to the configure script:
107 107
108--with-rsh=PATH allows you to specify the path to your rsh program.
109Normally ./configure will search the current $PATH for 'rsh'. You
110may need to specify this option if rsh is not in your path or has a
111different name.
112
113--with-pam enables PAM support. 108--with-pam enables PAM support.
114 109
115--enable-gnome-askpass will build the GNOME passphrase dialog. You 110--enable-gnome-askpass will build the GNOME passphrase dialog. You
@@ -226,4 +221,4 @@ Please refer to the "reporting bugs" section of the webpage at
226http://www.openssh.com/ 221http://www.openssh.com/
227 222
228 223
229$Id: INSTALL,v 1.53 2002/05/13 05:22:21 djm Exp $ 224$Id: INSTALL,v 1.54 2002/06/24 16:26:49 stevesk Exp $
diff --git a/acconfig.h b/acconfig.h
index 713b094d6..682e2754c 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -1,4 +1,4 @@
1/* $Id: acconfig.h,v 1.138 2002/06/12 16:57:15 mouring Exp $ */ 1/* $Id: acconfig.h,v 1.139 2002/06/24 16:26:49 stevesk Exp $ */
2 2
3#ifndef _CONFIG_H 3#ifndef _CONFIG_H
4#define _CONFIG_H 4#define _CONFIG_H
@@ -228,9 +228,6 @@
228/* Define if xauth is found in your path */ 228/* Define if xauth is found in your path */
229#undef XAUTH_PATH 229#undef XAUTH_PATH
230 230
231/* Define if rsh is found in your path */
232#undef RSH_PATH
233
234/* Define if you want to allow MD5 passwords */ 231/* Define if you want to allow MD5 passwords */
235#undef HAVE_MD5_PASSWORDS 232#undef HAVE_MD5_PASSWORDS
236 233
diff --git a/configure.ac b/configure.ac
index 85fb0d973..44ff46ab1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.68 2002/06/22 18:51:48 stevesk Exp $ 1# $Id: configure.ac,v 1.69 2002/06/24 16:26:49 stevesk Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -247,7 +247,6 @@ mips-sony-bsd|mips-sony-newsos4)
247 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include" 247 CPPFLAGS="$CPPFLAGS -Dftruncate=chsize -I/usr/local/include"
248 LDFLAGS="$LDFLAGS -L/usr/local/lib" 248 LDFLAGS="$LDFLAGS -L/usr/local/lib"
249 LIBS="$LIBS -los -lprot -lx -ltinfo -lm" 249 LIBS="$LIBS -los -lprot -lx -ltinfo -lm"
250 rsh_path="/usr/bin/rcmd"
251 RANLIB=true 250 RANLIB=true
252 no_dev_ptmx=1 251 no_dev_ptmx=1
253 AC_DEFINE(BROKEN_SYS_TERMIO_H) 252 AC_DEFINE(BROKEN_SYS_TERMIO_H)
@@ -264,7 +263,6 @@ mips-sony-bsd|mips-sony-newsos4)
264 LDFLAGS="$LDFLAGS -L/usr/local/lib" 263 LDFLAGS="$LDFLAGS -L/usr/local/lib"
265 LIBS="$LIBS -lprot -lx -ltinfo -lm" 264 LIBS="$LIBS -lprot -lx -ltinfo -lm"
266 no_dev_ptmx=1 265 no_dev_ptmx=1
267 rsh_path="/usr/bin/rcmd"
268 AC_DEFINE(USE_PIPES) 266 AC_DEFINE(USE_PIPES)
269 AC_DEFINE(HAVE_SECUREWARE) 267 AC_DEFINE(HAVE_SECUREWARE)
270 AC_DEFINE(DISABLE_SHADOW) 268 AC_DEFINE(DISABLE_SHADOW)
@@ -1790,17 +1788,6 @@ AC_ARG_WITH(afs,
1790LIBS="$LIBS $KLIBS $K5LIBS" 1788LIBS="$LIBS $KLIBS $K5LIBS"
1791 1789
1792# Looking for programs, paths and files 1790# Looking for programs, paths and files
1793AC_ARG_WITH(rsh,
1794 [ --with-rsh=PATH Specify path to remote shell program ],
1795 [
1796 if test "x$withval" != "$no" ; then
1797 rsh_path=$withval
1798 fi
1799 ],
1800 [
1801 AC_PATH_PROG(rsh_path, rsh)
1802 ]
1803)
1804 1791
1805PRIVSEP_PATH=/var/empty 1792PRIVSEP_PATH=/var/empty
1806AC_ARG_WITH(privsep-path, 1793AC_ARG_WITH(privsep-path,
@@ -1836,9 +1823,6 @@ else
1836 XAUTH_PATH=$xauth_path 1823 XAUTH_PATH=$xauth_path
1837 AC_SUBST(XAUTH_PATH) 1824 AC_SUBST(XAUTH_PATH)
1838fi 1825fi
1839if test ! -z "$rsh_path" ; then
1840 AC_DEFINE_UNQUOTED(RSH_PATH, "$rsh_path")
1841fi
1842 1826
1843# Check for mail directory (last resort if we cannot get it from headers) 1827# Check for mail directory (last resort if we cannot get it from headers)
1844if test ! -z "$MAIL" ; then 1828if test ! -z "$MAIL" ; then
diff --git a/defines.h b/defines.h
index 90825f6b9..b87dbc51e 100644
--- a/defines.h
+++ b/defines.h
@@ -1,7 +1,7 @@
1#ifndef _DEFINES_H 1#ifndef _DEFINES_H
2#define _DEFINES_H 2#define _DEFINES_H
3 3
4/* $Id: defines.h,v 1.91 2002/06/22 00:27:00 mouring Exp $ */ 4/* $Id: defines.h,v 1.92 2002/06/24 16:26:49 stevesk Exp $ */
5 5
6 6
7/* Constants */ 7/* Constants */
@@ -316,14 +316,6 @@ struct winsize {
316# define _PATH_MAILDIR MAILDIR 316# define _PATH_MAILDIR MAILDIR
317#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */ 317#endif /* !defined(_PATH_MAILDIR) && defined(MAILDIR) */
318 318
319#ifndef _PATH_RSH
320# ifdef RSH_PATH
321# define _PATH_RSH RSH_PATH
322# else /* RSH_PATH */
323# define _PATH_RSH "/usr/bin/rsh"
324# endif /* RSH_PATH */
325#endif /* _PATH_RSH */
326
327#ifndef _PATH_NOLOGIN 319#ifndef _PATH_NOLOGIN
328# define _PATH_NOLOGIN "/etc/nologin" 320# define _PATH_NOLOGIN "/etc/nologin"
329#endif 321#endif