- 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
|
||||
- Released 1.2pre14
|
||||
|
||||
- Configure, Make and changelog corrections from Tudor Bosman
|
||||
<tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
|
||||
|
||||
19991121
|
||||
- OpenBSD CVS Changes:
|
||||
- [channels.c]
|
||||
|
@ -60,7 +63,7 @@
|
|||
- EGD uses a socket, not a named pipe. Duh.
|
||||
- Fix includes in fingerprint.c
|
||||
- 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>
|
||||
- Added autoconf option to enable Kerberos 4 support (untested)
|
||||
- Added autoconf option to enable AFS support (untested)
|
||||
|
|
|
@ -2,7 +2,6 @@ prefix=@prefix@
|
|||
exec_prefix=@exec_prefix@
|
||||
bindir=@bindir@
|
||||
sbindir=@sbindir@
|
||||
libdir=@libdir@
|
||||
libexecdir=@libexecdir@
|
||||
mandir=@mandir@
|
||||
sysconfdir=@sysconfdir@
|
||||
|
@ -83,7 +82,7 @@ install: all
|
|||
ln -sf ssh.1 $(mandir)/man1/slogin.1
|
||||
|
||||
if [ "x@INSTALL_ASKPASS@" = "xyes" ] ; then \
|
||||
install -d $(libdir) ; \
|
||||
install -d $(libexecdir) ; \
|
||||
install -d $(libexecdir)/ssh ; \
|
||||
if [ -z "@GNOME_ASKPASS@" ] ; then \
|
||||
install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
|
||||
|
|
|
@ -284,7 +284,7 @@ AC_ARG_WITH(skey,
|
|||
)
|
||||
|
||||
dnl Check whether user wants TCP wrappers support
|
||||
AC_ARG_WITH(skey,
|
||||
AC_ARG_WITH(tcp-wrappers,
|
||||
[ --with-tcp-wrappers Enable tcpwrappers support],
|
||||
[
|
||||
AC_DEFINE(LIBWRAP)
|
||||
|
@ -293,7 +293,7 @@ AC_ARG_WITH(skey,
|
|||
)
|
||||
|
||||
dnl Check whether to enable MD5 passwords
|
||||
AC_ARG_WITH(md5passwords,
|
||||
AC_ARG_WITH(md5-passwords,
|
||||
[ --with-md5-passwords Enable use of MD5 passwords],
|
||||
[AC_DEFINE(HAVE_MD5_PASSWORDS)]
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue