aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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