summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorkleink <kleink>1998-01-18 20:07:43 +0000
committerkleink <kleink>1998-01-18 20:07:43 +0000
commit63be4720a5729272301660b54204a3f342e52a7f (patch)
treea37c9f8b8522dbe96179b7b50111f88dc9b4a393 /security
parentf231efc837d3e967ab701e2cc5ff0a174b4158d0 (diff)
downloadpkgsrc-63be4720a5729272301660b54204a3f342e52a7f.tar.gz
Since our distribution contains libwrap, link against it and remove the
previous (and bogus) USE_TCPWRAP variable check.
Diffstat (limited to 'security')
-rw-r--r--security/ssh/Makefile16
1 files changed, 3 insertions, 13 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile
index 0d4a60bc132..02f099552a1 100644
--- a/security/ssh/Makefile
+++ b/security/ssh/Makefile
@@ -3,11 +3,10 @@
# Date created: 19971214
# Whom: hubertf@netbsd.org
#
-# $NetBSD: Makefile,v 1.4 1998/01/15 08:36:34 hubertf Exp $
+# $NetBSD: Makefile,v 1.5 1998/01/18 20:07:43 kleink Exp $
# FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp
#
-# Maximal ssh package requires YES values for
-# USE_PERL, USE_TCPWRAP
+# Maximal ssh package requires a YES value for USE_PERL.
#
DISTNAME= ssh-1.2.21
@@ -37,7 +36,7 @@ IS_INTERACTIVE= YES
GNU_CONFIGURE= YES
-CONFIGURE_ARGS+= --prefix=${PREFIX} --with-etcdir=/etc
+CONFIGURE_ARGS+= --prefix=${PREFIX} --with-etcdir=/etc --with-libwrap
#Uncomment if all your users are in their own group and their homedir
#is writeable by that group. Beware the security implications!
@@ -127,15 +126,6 @@ CONFIGURE_ENV+= PERL=${PREFIX}/bin/perl5.00404
CONFIGURE_ENV+= PERL=/replace_it_with_PERL_path
.endif
-# Include tcp-wrapper support (call remote identd)
-.if defined(USE_TCPWRAP) && ${USE_TCPWRAP} == YES || \
- exists(${PREFIX}/lib/libwrap.a) && \
- (!defined(USE_TCPWRAP) || ${USE_TCPWRAP} != NO)
-CONFIGURE_ENV+= LDFLAGS=-L${PREFIX}/lib CFLAGS="${CFLAGS} -I${PREFIX}/include"
-CONFIGURE_ARGS+= --with-libwrap
-LIB_DEPENDS+= wrap\\.7\\.:${PORTSDIR}/security/tcp_wrapper
-.endif
-
# Include SOCKS firewall support
.if defined(USE_SOCKS) && ${USE_SOCKS} == YES
CONFIGURE_ARGS+= --with-socks="-L${PREFIX}/lib -lsocks5"