diff options
author | dima <dima@FreeBSD.org> | 1998-08-02 06:24:55 +0800 |
---|---|---|
committer | dima <dima@FreeBSD.org> | 1998-08-02 06:24:55 +0800 |
commit | acd4bcafbe6a83888b9ce3c0224d2e3146ee1d52 (patch) | |
tree | 4ac1febb5dea9346a5099e9ee02f378ad6c83eec | |
parent | 558adf9d11986a938d9ef2ed71f1e423942c4418 (diff) | |
download | freebsd-ports-gnome-acd4bcafbe6a83888b9ce3c0224d2e3146ee1d52.tar.gz freebsd-ports-gnome-acd4bcafbe6a83888b9ce3c0224d2e3146ee1d52.tar.zst freebsd-ports-gnome-acd4bcafbe6a83888b9ce3c0224d2e3146ee1d52.zip |
If KRB5_HOME is defined, compile ssh with krb5 support.
-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 |