diff options
Diffstat (limited to 'security')
-rw-r--r-- | security/openssh/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile index 862fabebe17..c8773850982 100644 --- a/security/openssh/Makefile +++ b/security/openssh/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.143 2004/10/03 00:18:11 tv Exp $ +# $NetBSD: Makefile,v 1.144 2004/10/24 02:52:15 grant Exp $ DISTNAME= openssh-3.9p1 PKGNAME= openssh-3.9.1 -PKGREVISION= 1 +PKGREVISION= 2 SVR4_PKGNAME= ossh CATEGORIES= security MASTER_SITES= ftp://ftp.openssh.com/pub/OpenBSD/OpenSSH/portable/ \ @@ -114,6 +114,13 @@ ASKPASS_PROGRAM= ${X11PREFIX}/bin/ssh-askpass CONFIGURE_ENV+= ASKPASS_PROGRAM=${ASKPASS_PROGRAM} MAKE_ENV+= ASKPASS_PROGRAM=${ASKPASS_PROGRAM} +# do the same for xauth +.if exists(${X11BASE}/bin/xauth) +CONFIGURE_ARGS+= --with-xauth=${X11BASE}/bin/xauth +.else +CONFIGURE_ARGS+= --with-xauth=${X11PREFIX}/bin/xauth +.endif + CONFS= ssh_config sshd_config SUPPS= moduli |