diff options
author | sumikawa <sumikawa@FreeBSD.org> | 2000-02-02 01:04:02 +0800 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 2000-02-02 01:04:02 +0800 |
commit | f6a3b24dde4793e34183d682a61dc1ae29963946 (patch) | |
tree | 8e63156da0b8edb505515e6660f9f196c90c3fc4 /security/openssh | |
parent | 13c95880ff1d8526b255c7e6d88af0beb2cc5695 (diff) | |
download | freebsd-ports-gnome-f6a3b24dde4793e34183d682a61dc1ae29963946.tar.gz freebsd-ports-gnome-f6a3b24dde4793e34183d682a61dc1ae29963946.tar.zst freebsd-ports-gnome-f6a3b24dde4793e34183d682a61dc1ae29963946.zip |
the condition for USE_INET6 setting was opposite.
Diffstat (limited to 'security/openssh')
-rw-r--r-- | security/openssh/Makefile | 3 |
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 |