summaryrefslogtreecommitdiff
path: root/security/ssh
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-02-14 21:52:05 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-02-14 21:52:05 +0000
commit5ce5ad59b1cbc3773e5e76e29e778ca92407c16c (patch)
tree76d04fc89049b93e15a4d6d30834dc6e14df4fd7 /security/ssh
parentupdate to 1.20 (diff)
Disable ipv6 until it will be fixed by someone.
With latest -current configure fails: checking getaddrinfo bug... buggy Fatal: You must get working getaddrinfo() function. or you can specify "--disable-ipv6".
Notes
Notes: svn path=/head/; revision=25824
Diffstat (limited to 'security/ssh')
-rw-r--r--security/ssh/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile
index 405a2e13bd50..45193bc0fe26 100644
--- a/security/ssh/Makefile
+++ b/security/ssh/Makefile
@@ -10,7 +10,7 @@
#
DISTNAME= ssh-1.2.27
-CATEGORIES= security net ipv6
+CATEGORIES= security net # ipv6 (see below)
MASTER_SITES= ftp://ftp.cs.hut.fi/pub/ssh/
MAINTAINER= torstenb@FreeBSD.org
@@ -141,7 +141,15 @@ LIB_DEPENDS+= wrap.7:${PORTSDIR}/security/tcp_wrapper
# We still use USE_INET6 here and try to support pre 4.0 machines with kame
# IPv6 stack
.if ${OSVERSION} >= 400014 || ( ${OSVERSION} < 400014 && defined(USE_INET6) )
-CONFIGURE_ARGS+= --enable-ipv6
+##
+## Disable ipv6 until it will be fixed.
+## Configure fails with latest -current:
+## checking getaddrinfo bug... buggy
+## Fatal: You must get working getaddrinfo() function.
+## or you can specify "--disable-ipv6".
+##
+## CONFIGURE_ARGS+= --enable-ipv6
+CONFIGURE_ARGS+= --disable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif