- Renamed --with-xauth-path to --with-xauth
- Added --with-pid-dir option - Released 1.2.1pre26
This commit is contained in:
parent
229779984d
commit
5eed6a2d71
|
@ -1,3 +1,8 @@
|
||||||
|
20000116
|
||||||
|
- Renamed --with-xauth-path to --with-xauth
|
||||||
|
- Added --with-pid-dir option
|
||||||
|
- Released 1.2.1pre26
|
||||||
|
|
||||||
20000115
|
20000115
|
||||||
- Add --with-xauth-path configure directive and explicit test for
|
- Add --with-xauth-path configure directive and explicit test for
|
||||||
/usr/openwin/bin/xauth for Solaris systems. Report from Anders
|
/usr/openwin/bin/xauth for Solaris systems. Report from Anders
|
||||||
|
|
5
INSTALL
5
INSTALL
|
@ -139,6 +139,11 @@ $DISPLAY environment variable. Some broken systems need this.
|
||||||
--with-default-path=PATH allows you to specify a default $PATH for sessions
|
--with-default-path=PATH allows you to specify a default $PATH for sessions
|
||||||
started by sshd.
|
started by sshd.
|
||||||
|
|
||||||
|
--with-pid-dir=PATH specifies the directory in which the ssh.pid file is
|
||||||
|
created.
|
||||||
|
|
||||||
|
--with-xauth=PATH specifies the location of the xauth binary
|
||||||
|
|
||||||
--with-dante[=DIR] will enable Dante SOCKS library support. If the Dante
|
--with-dante[=DIR] will enable Dante SOCKS library support. If the Dante
|
||||||
libsocks library isn't installed in a library searched by the compiler,
|
libsocks library isn't installed in a library searched by the compiler,
|
||||||
add the directory name as the option.
|
add the directory name as the option.
|
||||||
|
|
|
@ -132,6 +132,9 @@
|
||||||
/* Specify default $PATH */
|
/* Specify default $PATH */
|
||||||
#undef USER_PATH
|
#undef USER_PATH
|
||||||
|
|
||||||
|
/* Specify location of ssh.pid */
|
||||||
|
#undef PID_DIR
|
||||||
|
|
||||||
@BOTTOM@
|
@BOTTOM@
|
||||||
|
|
||||||
/* ******************* Shouldn't need to edit below this line ************** */
|
/* ******************* Shouldn't need to edit below this line ************** */
|
||||||
|
|
13
configure.in
13
configure.in
|
@ -24,8 +24,8 @@ AC_ARG_WITH(rsh,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
AC_ARG_WITH(xauth-path,
|
AC_ARG_WITH(xauth,
|
||||||
[ --with-xauth-path=PATH Specify path to xauth program ],
|
[ --with-xauth=PATH Specify path to xauth program ],
|
||||||
[
|
[
|
||||||
if test "x$withval" != "$xno" ; then
|
if test "x$withval" != "$xno" ; then
|
||||||
AC_DEFINE_UNQUOTED(XAUTH_PATH, "$withval")
|
AC_DEFINE_UNQUOTED(XAUTH_PATH, "$withval")
|
||||||
|
@ -651,6 +651,15 @@ AC_ARG_WITH(default-path,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
AC_ARG_WITH(pid-dir,
|
||||||
|
[ --with-pid-dir=PATH Specify location of ssh.pid file],
|
||||||
|
[
|
||||||
|
if test "x$withval" != "xno" ; then
|
||||||
|
AC_DEFINE_UNQUOTED(PID_DIR, "$withval")
|
||||||
|
fi
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
dnl Check for mail directory (last resort if we cannot get it from headers)
|
dnl Check for mail directory (last resort if we cannot get it from headers)
|
||||||
if test ! -z "$MAIL" ; then
|
if test ! -z "$MAIL" ; then
|
||||||
maildir=`dirname $MAIL`
|
maildir=`dirname $MAIL`
|
||||||
|
|
Loading…
Reference in New Issue