diff options
author | ache <ache@FreeBSD.org> | 2000-02-14 21:52:05 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-02-14 21:52:05 +0000 |
commit | 611cc0fa6c8f597f4d6f29986aebc8a8eae81b96 (patch) | |
tree | 54dd2f095afe7c86c6ce964ff92455e87ec61add /security/ssh | |
parent | 0503261928d8677548facc833fb9bdc957d6756c (diff) | |
download | FreeBSD-ports-611cc0fa6c8f597f4d6f29986aebc8a8eae81b96.zip FreeBSD-ports-611cc0fa6c8f597f4d6f29986aebc8a8eae81b96.tar.gz |
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".
Diffstat (limited to 'security/ssh')
-rw-r--r-- | security/ssh/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 405a2e1..45193bc 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 |