diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.in b/configure.in index dd74b3b4..697784c6 100644 --- a/configure.in +++ b/configure.in @@ -74,7 +74,7 @@ dnl Check whether use wants to disable the external ssh-askpass INSTALL_ASKPASS="yes" AC_MSG_CHECKING([whether to enable external ssh-askpass support]) AC_ARG_WITH(askpass, - [ --with-askpass=yes/no Enable external ssh-askpass support (default=no)], + [ --with-askpass=yes/no Enable external ssh-askpass support (default=yes)], [ if test x$withval = xno ; then INSTALL_ASKPASS="no" @@ -213,4 +213,10 @@ AC_ARG_WITH(skey, ] ) +dnl Check whether to enable MD5 passwords +AC_ARG_WITH(md5passwords, + [ --with-md5-passwords Enable use of MD5 passwords], + [AC_DEFINE(HAVE_MD5_PASSWORDS)] +) + AC_OUTPUT(Makefile) |