diff options
Diffstat (limited to 'security/ssh/Makefile')
-rw-r--r-- | security/ssh/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 740cced24d4..759f1ddcde7 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -3,7 +3,7 @@ # Date created: 19971214 # Whom: hubertf@netbsd.org # -# $NetBSD: Makefile,v 1.14 1998/03/18 03:05:45 tv Exp $ +# $NetBSD: Makefile,v 1.15 1998/03/19 02:20:53 tv Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -79,6 +79,11 @@ CONFIGURE_ARGS+= --with-socks="-L${PREFIX}/lib -lsocks5" CFLAGS+= -I${PREFIX}/include .endif +# Make libwrap also compare against forwards (off by default) +.if defined(LIBWRAP_FWD) && ${LIBWRAP_FWD} == YES +CFLAGS+= -DLIBWRAP_FWD +.endif + MAN1= scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh.1 \ make-ssh-known-hosts.1 MAN8= sshd.8 |