summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-19 15:53:20 +1100
committerDamien Miller <djm@mindrot.org>1999-11-19 15:53:20 +1100
commitdd1c7baf1a35d3bfd36cb1c283d08bbeb28f2831 (patch)
tree135748e6eb30488217ccd42ce0ca8c1ca5592432 /configure.in
parent04f801456ad64b8f08bb8643cf19e0b9ca477b36 (diff)
- Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index dd74b3b4f..697784c6d 100644
--- a/configure.in
+++ b/configure.in
@@ -74,7 +74,7 @@ dnl Check whether use wants to disable the external ssh-askpass
74INSTALL_ASKPASS="yes" 74INSTALL_ASKPASS="yes"
75AC_MSG_CHECKING([whether to enable external ssh-askpass support]) 75AC_MSG_CHECKING([whether to enable external ssh-askpass support])
76AC_ARG_WITH(askpass, 76AC_ARG_WITH(askpass,
77 [ --with-askpass=yes/no Enable external ssh-askpass support (default=no)], 77 [ --with-askpass=yes/no Enable external ssh-askpass support (default=yes)],
78 [ 78 [
79 if test x$withval = xno ; then 79 if test x$withval = xno ; then
80 INSTALL_ASKPASS="no" 80 INSTALL_ASKPASS="no"
@@ -213,4 +213,10 @@ AC_ARG_WITH(skey,
213 ] 213 ]
214) 214)
215 215
216dnl Check whether to enable MD5 passwords
217AC_ARG_WITH(md5passwords,
218 [ --with-md5-passwords Enable use of MD5 passwords],
219 [AC_DEFINE(HAVE_MD5_PASSWORDS)]
220)
221
216AC_OUTPUT(Makefile) 222AC_OUTPUT(Makefile)