diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 3 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 7 insertions, 5 deletions
@@ -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 | |||
20 | 19991121 | 23 | 19991121 |
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@ | |||
2 | exec_prefix=@exec_prefix@ | 2 | exec_prefix=@exec_prefix@ |
3 | bindir=@bindir@ | 3 | bindir=@bindir@ |
4 | sbindir=@sbindir@ | 4 | sbindir=@sbindir@ |
5 | libdir=@libdir@ | ||
6 | libexecdir=@libexecdir@ | 5 | libexecdir=@libexecdir@ |
7 | mandir=@mandir@ | 6 | mandir=@mandir@ |
8 | sysconfdir=@sysconfdir@ | 7 | sysconfdir=@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 | ||
286 | dnl Check whether user wants TCP wrappers support | 286 | dnl Check whether user wants TCP wrappers support |
287 | AC_ARG_WITH(skey, | 287 | AC_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 | ||
295 | dnl Check whether to enable MD5 passwords | 295 | dnl Check whether to enable MD5 passwords |
296 | AC_ARG_WITH(md5passwords, | 296 | AC_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 | ) |