diff options
author | Dima Ruban <dima@FreeBSD.org> | 1998-08-01 22:24:55 +0000 |
---|---|---|
committer | Dima Ruban <dima@FreeBSD.org> | 1998-08-01 22:24:55 +0000 |
commit | 3412dccd60ee33d558aaabc8e46cfc1ee5c277d7 (patch) | |
tree | 9fb2a8dc36b6aa6d2d22278c6a992bab1d1a1113 /security | |
parent | Honor 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')
-rw-r--r-- | security/ssh/Makefile | 6 | ||||
-rw-r--r-- | security/ssh2/Makefile | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 0e4e7ccafcd6..1db97c3a369c 100644 --- a/security/ssh/Makefile +++ b/security/ssh/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 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 |