summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 0ea76c8fd..ec562b1c2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.459 2010/12/04 12:20:50 dtucker Exp $ 1# $Id: configure.ac,v 1.460 2011/01/02 10:53:09 djm Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.459 $) 18AC_REVISION($Revision: 1.460 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -3516,10 +3516,12 @@ AC_ARG_WITH(kerberos5,
3516 [ char *tmp = heimdal_version; ], 3516 [ char *tmp = heimdal_version; ],
3517 [ AC_MSG_RESULT(yes) 3517 [ AC_MSG_RESULT(yes)
3518 AC_DEFINE(HEIMDAL) 3518 AC_DEFINE(HEIMDAL)
3519 K5LIBS="-lkrb5 -ldes" 3519 K5LIBS="-lkrb5"
3520 K5LIBS="$K5LIBS -lcom_err -lasn1" 3520 K5LIBS="$K5LIBS -lcom_err -lasn1"
3521 AC_CHECK_LIB(roken, net_write, 3521 AC_CHECK_LIB(roken, net_write,
3522 [K5LIBS="$K5LIBS -lroken"]) 3522 [K5LIBS="$K5LIBS -lroken"])
3523 AC_CHECK_LIB(des, des_cbc_encrypt,
3524 [K5LIBS="$K5LIBS -ldes"])
3523 ], 3525 ],
3524 [ AC_MSG_RESULT(no) 3526 [ AC_MSG_RESULT(no)
3525 K5LIBS="-lkrb5 -lk5crypto -lcom_err" 3527 K5LIBS="-lkrb5 -lk5crypto -lcom_err"