diff options
author | obrien <obrien@FreeBSD.org> | 1998-10-30 14:15:18 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1998-10-30 14:15:18 +0800 |
commit | a1d303d2ffdc01465c0936db67ab781c1d14338f (patch) | |
tree | 3c22e188d7a49ed160330ea215260e0617dd8ffc /security/ssh | |
parent | c68ac0553a9158765981bd706f4025c14a0fc678 (diff) | |
download | freebsd-ports-gnome-a1d303d2ffdc01465c0936db67ab781c1d14338f.tar.gz freebsd-ports-gnome-a1d303d2ffdc01465c0936db67ab781c1d14338f.tar.zst freebsd-ports-gnome-a1d303d2ffdc01465c0936db67ab781c1d14338f.zip |
configure with "--without-x" if X11BASE/bin/xauth is missing.
Requested by: Studded@gorean.org
Diffstat (limited to 'security/ssh')
-rw-r--r-- | security/ssh/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index f1f2451daf77..bc1cdd8a6db3 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.69 1998/10/08 06:17:56 jkh Exp $ +# $Id: Makefile,v 1.70 1998/10/08 13:11:52 asami Exp $ # # Maximal ssh package requires YES values for # USE_PERL, USE_TCPWRAP @@ -75,6 +75,10 @@ CONFIGURE_ARGS+= --with-secureid CONFIGURE_ARGS+= --without-idea .endif +.if !exists(${X11BASE}/bin/xauth) +CONFIGURE_ARGS+= --without-x +.endif + MAN1= scp1.1 ssh-add1.1 ssh-agent1.1 ssh-keygen1.1 ssh1.1 \ make-ssh-known-hosts1.1 MAN8= sshd1.8 |