- Added non-PAM MD5 password support patch from Tudor Bosman <tudorb@jm.nu>
diff --git a/configure.in b/configure.in
index dd74b3b..697784c 100644
--- a/configure.in
+++ b/configure.in
@@ -74,7 +74,7 @@
 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 @@
 	]
 )
 
+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)