summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMunechika SUMIKAWA <sumikawa@FreeBSD.org>2000-02-01 17:04:02 +0000
committerMunechika SUMIKAWA <sumikawa@FreeBSD.org>2000-02-01 17:04:02 +0000
commitff51f86e8c5063c6a30feb6ce8d47377f977b4c0 (patch)
treec876654bcdde8311f842130bea2b3184e86414e3
parentPR: 16433 (diff)
the condition for USE_INET6 setting was opposite.
Notes
Notes: svn path=/head/; revision=25393
-rw-r--r--security/openssh/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/security/openssh/Makefile b/security/openssh/Makefile
index 0ce5d13afd4d..025fb7566ffc 100644
--- a/security/openssh/Makefile
+++ b/security/openssh/Makefile
@@ -36,8 +36,9 @@ CRYPTOLIBS+= -lRSAglue -lrsaref
# Here, MANDIR is concetenated to DESTDIR which all forms the man install dir...
MAKE_ENV= DESTDIR=${PREFIX} MANDIR=/man/man CRYPTOLIBS="${CRYPTOLIBS}"
.if ${OSVERSION} < 400014
-MAKE_ENV+= USE_INET6=yes
MAKE_ENV+= COMPAT_GETADDRINFO=yes
+.else
+MAKE_ENV+= USE_INET6=yes
.endif
.if !exists(/usr/include/tcpd.h)
MAKE_ENV+= TCP_WRAPPERS=no