summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index e679df45b..ada1a2e96 100644
--- a/configure.in
+++ b/configure.in
@@ -108,4 +108,14 @@ if test -z "$RANDOM_POOL" -a -z "$EGD_POOL"; then
108 AC_MSG_ERROR([No random device found, and no EGD random pool specified]) 108 AC_MSG_ERROR([No random device found, and no EGD random pool specified])
109fi 109fi
110 110
111dnl Check whether use wants to disable the external ssh-askpass
112AC_ARG_WITH(askpass,
113 [ --without-askpass Disable external ssh-askpass support],
114 [
115 AC_DEFINE(DISABLE_EXTERNAL_ASKPASS)
116 DISABLE_EXTERNAL_ASKPASS=yes
117 AC_SUBST(DISABLE_EXTERNAL_ASKPASS)
118 ]
119)
120
111AC_OUTPUT(Makefile) 121AC_OUTPUT(Makefile)