mirror of git://anongit.mindrot.org/openssh.git
- Configure, Make and changelog corrections from Tudor Bosman
<tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
This commit is contained in:
parent
66c14888e3
commit
f7c0f82cee
|
@ -17,6 +17,9 @@
|
||||||
- Only display public key comment when presenting ssh-askpass dialog
|
- Only display public key comment when presenting ssh-askpass dialog
|
||||||
- Released 1.2pre14
|
- Released 1.2pre14
|
||||||
|
|
||||||
|
- Configure, Make and changelog corrections from Tudor Bosman
|
||||||
|
<tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
|
||||||
|
|
||||||
19991121
|
19991121
|
||||||
- OpenBSD CVS Changes:
|
- OpenBSD CVS Changes:
|
||||||
- [channels.c]
|
- [channels.c]
|
||||||
|
@ -60,7 +63,7 @@
|
||||||
- EGD uses a socket, not a named pipe. Duh.
|
- EGD uses a socket, not a named pipe. Duh.
|
||||||
- Fix includes in fingerprint.c
|
- Fix includes in fingerprint.c
|
||||||
- Fix scp progress bar bug again.
|
- Fix scp progress bar bug again.
|
||||||
- Move scp from ${libdir}/ssh to ${libexecdir}/ssh at request of
|
- Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
|
||||||
David Rankin <drankin@bohemians.lexington.ky.us>
|
David Rankin <drankin@bohemians.lexington.ky.us>
|
||||||
- Added autoconf option to enable Kerberos 4 support (untested)
|
- Added autoconf option to enable Kerberos 4 support (untested)
|
||||||
- Added autoconf option to enable AFS support (untested)
|
- Added autoconf option to enable AFS support (untested)
|
||||||
|
|
|
@ -2,7 +2,6 @@ prefix=@prefix@
|
||||||
exec_prefix=@exec_prefix@
|
exec_prefix=@exec_prefix@
|
||||||
bindir=@bindir@
|
bindir=@bindir@
|
||||||
sbindir=@sbindir@
|
sbindir=@sbindir@
|
||||||
libdir=@libdir@
|
|
||||||
libexecdir=@libexecdir@
|
libexecdir=@libexecdir@
|
||||||
mandir=@mandir@
|
mandir=@mandir@
|
||||||
sysconfdir=@sysconfdir@
|
sysconfdir=@sysconfdir@
|
||||||
|
@ -83,7 +82,7 @@ install: all
|
||||||
ln -sf ssh.1 $(mandir)/man1/slogin.1
|
ln -sf ssh.1 $(mandir)/man1/slogin.1
|
||||||
|
|
||||||
if [ "x@INSTALL_ASKPASS@" = "xyes" ] ; then \
|
if [ "x@INSTALL_ASKPASS@" = "xyes" ] ; then \
|
||||||
install -d $(libdir) ; \
|
install -d $(libexecdir) ; \
|
||||||
install -d $(libexecdir)/ssh ; \
|
install -d $(libexecdir)/ssh ; \
|
||||||
if [ -z "@GNOME_ASKPASS@" ] ; then \
|
if [ -z "@GNOME_ASKPASS@" ] ; then \
|
||||||
install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
|
install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
|
||||||
|
|
|
@ -284,7 +284,7 @@ AC_ARG_WITH(skey,
|
||||||
)
|
)
|
||||||
|
|
||||||
dnl Check whether user wants TCP wrappers support
|
dnl Check whether user wants TCP wrappers support
|
||||||
AC_ARG_WITH(skey,
|
AC_ARG_WITH(tcp-wrappers,
|
||||||
[ --with-tcp-wrappers Enable tcpwrappers support],
|
[ --with-tcp-wrappers Enable tcpwrappers support],
|
||||||
[
|
[
|
||||||
AC_DEFINE(LIBWRAP)
|
AC_DEFINE(LIBWRAP)
|
||||||
|
@ -293,7 +293,7 @@ AC_ARG_WITH(skey,
|
||||||
)
|
)
|
||||||
|
|
||||||
dnl Check whether to enable MD5 passwords
|
dnl Check whether to enable MD5 passwords
|
||||||
AC_ARG_WITH(md5passwords,
|
AC_ARG_WITH(md5-passwords,
|
||||||
[ --with-md5-passwords Enable use of MD5 passwords],
|
[ --with-md5-passwords Enable use of MD5 passwords],
|
||||||
[AC_DEFINE(HAVE_MD5_PASSWORDS)]
|
[AC_DEFINE(HAVE_MD5_PASSWORDS)]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue