summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-12 15:46:08 +1100
committerDamien Miller <djm@mindrot.org>1999-11-12 15:46:08 +1100
commit3d1b22c150bfacb300d6d58b1f71f13cef46ef22 (patch)
treea9d424e7535ce8eb3cb348826122815d6223620f /configure.in
parent6d7b2cd1a32efa2a40c97361065d357a2e60b716 (diff)
- Make ssh-askpass support optional through autoconf
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)