summaryrefslogtreecommitdiff
path: root/security/ssh2/Makefile
diff options
context:
space:
mode:
authorDima Ruban <dima@FreeBSD.org>1998-08-01 22:24:55 +0000
committerDima Ruban <dima@FreeBSD.org>1998-08-01 22:24:55 +0000
commit3412dccd60ee33d558aaabc8e46cfc1ee5c277d7 (patch)
tree9fb2a8dc36b6aa6d2d22278c6a992bab1d1a1113 /security/ssh2/Makefile
parentHonor KRB5_HOME variable. (diff)
If KRB5_HOME is defined, compile ssh with krb5 support.
Notes
Notes: svn path=/head/; revision=12245
Diffstat (limited to 'security/ssh2/Makefile')
-rw-r--r--security/ssh2/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile
index 0e4e7ccafcd6..1db97c3a369c 100644
--- a/security/ssh2/Makefile
+++ b/security/ssh2/Makefile
@@ -3,7 +3,7 @@
# Date created: 30 Jul 1995
# Whom: torstenb@FreeBSD.ORG
#
-# $Id: Makefile,v 1.57 1998/07/11 23:10:50 imp Exp $
+# $Id: Makefile,v 1.58 1998/07/25 19:46:37 asami Exp $
#
# Maximal ssh package requires YES values for
# USE_PERL, USE_TCPWRAP
@@ -58,6 +58,10 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --with-etcdir=${PREFIX}/etc
CONFIGURE_ARGS+= --with-rsaref
.endif
+.if defined(KRB5_HOME) && exists(${KRB5_HOME})
+CONFIGURE_ARGS+=--with-kerberos5=${KRB5_HOME} --enable-kerberos-tgt-passing
+.endif
+
# Include support for the SecureID card
# Warning: untested !
.if defined(USE_SECUREID) && ${USE_SECUREID} == YES