summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9127489de..afc4ae9b4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.182 2004/01/02 07:01:31 djm Exp $ 1# $Id: configure.ac,v 1.183 2004/01/05 11:36:52 dtucker Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -2037,6 +2037,11 @@ AC_ARG_WITH(kerberos5,
2037 [ AC_MSG_RESULT(yes) 2037 [ AC_MSG_RESULT(yes)
2038 AC_DEFINE(HEIMDAL) 2038 AC_DEFINE(HEIMDAL)
2039 K5LIBS="-lkrb5 -ldes -lcom_err -lasn1 -lroken" 2039 K5LIBS="-lkrb5 -ldes -lcom_err -lasn1 -lroken"
2040 AC_SEARCH_LIBS(k_hasafs, kafs,
2041 [ AC_DEFINE(AFS)
2042 K5LIBS="-lkafs $K5LIBS"
2043 ]
2044 )
2040 ], 2045 ],
2041 [ AC_MSG_RESULT(no) 2046 [ AC_MSG_RESULT(no)
2042 K5LIBS="-lkrb5 -lk5crypto -lcom_err" 2047 K5LIBS="-lkrb5 -lk5crypto -lcom_err"