summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in3
-rw-r--r--configure.in4
3 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 04561846e..b66bb4e20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -17,6 +17,9 @@
17 - Only display public key comment when presenting ssh-askpass dialog 17 - Only display public key comment when presenting ssh-askpass dialog
18 - Released 1.2pre14 18 - Released 1.2pre14
19 19
20 - Configure, Make and changelog corrections from Tudor Bosman
21 <tudorb@jm.nu> and Niels Kristian Bech Jensen <nkbj@image.dk>
22
2019991121 2319991121
21 - OpenBSD CVS Changes: 24 - OpenBSD CVS Changes:
22 - [channels.c] 25 - [channels.c]
@@ -60,7 +63,7 @@
60 - EGD uses a socket, not a named pipe. Duh. 63 - EGD uses a socket, not a named pipe. Duh.
61 - Fix includes in fingerprint.c 64 - Fix includes in fingerprint.c
62 - Fix scp progress bar bug again. 65 - Fix scp progress bar bug again.
63 - Move scp from ${libdir}/ssh to ${libexecdir}/ssh at request of 66 - Move ssh-askpass from ${libdir}/ssh to ${libexecdir}/ssh at request of
64 David Rankin <drankin@bohemians.lexington.ky.us> 67 David Rankin <drankin@bohemians.lexington.ky.us>
65 - Added autoconf option to enable Kerberos 4 support (untested) 68 - Added autoconf option to enable Kerberos 4 support (untested)
66 - Added autoconf option to enable AFS support (untested) 69 - Added autoconf option to enable AFS support (untested)
diff --git a/Makefile.in b/Makefile.in
index 4400c258c..298790a36 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -2,7 +2,6 @@ prefix=@prefix@
2exec_prefix=@exec_prefix@ 2exec_prefix=@exec_prefix@
3bindir=@bindir@ 3bindir=@bindir@
4sbindir=@sbindir@ 4sbindir=@sbindir@
5libdir=@libdir@
6libexecdir=@libexecdir@ 5libexecdir=@libexecdir@
7mandir=@mandir@ 6mandir=@mandir@
8sysconfdir=@sysconfdir@ 7sysconfdir=@sysconfdir@
@@ -83,7 +82,7 @@ install: all
83 ln -sf ssh.1 $(mandir)/man1/slogin.1 82 ln -sf ssh.1 $(mandir)/man1/slogin.1
84 83
85 if [ "x@INSTALL_ASKPASS@" = "xyes" ] ; then \ 84 if [ "x@INSTALL_ASKPASS@" = "xyes" ] ; then \
86 install -d $(libdir) ; \ 85 install -d $(libexecdir) ; \
87 install -d $(libexecdir)/ssh ; \ 86 install -d $(libexecdir)/ssh ; \
88 if [ -z "@GNOME_ASKPASS@" ] ; then \ 87 if [ -z "@GNOME_ASKPASS@" ] ; then \
89 install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \ 88 install -m755 -c ssh-askpass ${ASKPASS_PROGRAM}; \
diff --git a/configure.in b/configure.in
index a831b9210..709e289b0 100644
--- a/configure.in
+++ b/configure.in
@@ -284,7 +284,7 @@ AC_ARG_WITH(skey,
284) 284)
285 285
286dnl Check whether user wants TCP wrappers support 286dnl Check whether user wants TCP wrappers support
287AC_ARG_WITH(skey, 287AC_ARG_WITH(tcp-wrappers,
288 [ --with-tcp-wrappers Enable tcpwrappers support], 288 [ --with-tcp-wrappers Enable tcpwrappers support],
289 [ 289 [
290 AC_DEFINE(LIBWRAP) 290 AC_DEFINE(LIBWRAP)
@@ -293,7 +293,7 @@ AC_ARG_WITH(skey,
293) 293)
294 294
295dnl Check whether to enable MD5 passwords 295dnl Check whether to enable MD5 passwords
296AC_ARG_WITH(md5passwords, 296AC_ARG_WITH(md5-passwords,
297 [ --with-md5-passwords Enable use of MD5 passwords], 297 [ --with-md5-passwords Enable use of MD5 passwords],
298 [AC_DEFINE(HAVE_MD5_PASSWORDS)] 298 [AC_DEFINE(HAVE_MD5_PASSWORDS)]
299) 299)