summaryrefslogtreecommitdiff
path: root/security/tcp_wrappers
diff options
context:
space:
mode:
authorobache <obache>2011-02-06 08:39:59 +0000
committerobache <obache>2011-02-06 08:39:59 +0000
commitf4aa5248b11085f3f1a528f8e25d8a543bf0a628 (patch)
tree8479fe78998c236c9a104909c48e556a2e843513 /security/tcp_wrappers
parent65505c4461c1dd2228e645e94d837f4835be8a30 (diff)
downloadpkgsrc-f4aa5248b11085f3f1a528f8e25d8a543bf0a628.tar.gz
On Interix, it is impossible to build with HAVE_IPV6 due to missing
neither getipnodebyname(3) nor gethostbyname2(3).
Diffstat (limited to 'security/tcp_wrappers')
-rw-r--r--security/tcp_wrappers/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/tcp_wrappers/Makefile b/security/tcp_wrappers/Makefile
index df4ff08b2b3..dbfc5acd478 100644
--- a/security/tcp_wrappers/Makefile
+++ b/security/tcp_wrappers/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.33 2008/11/16 13:57:02 tron Exp $
+# $NetBSD: Makefile,v 1.34 2011/02/06 08:39:59 obache Exp $
DISTNAME= tcp_wrappers_7.6-ipv6.1
PKGNAME= tcp_wrappers-7.6.1
@@ -34,7 +34,7 @@ BUILD_TARGET= ${BUILD_TARGET.${OPSYS}}
.if !empty(PKG_OPTIONS:Minet6)
. if !empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly"
MAKE_ENV+= IPV6="-DHAVE_IPV6 -DUSE_GETHOSTBYNAME2"
-. elif ${OPSYS} != "Linux"
+. elif ${OPSYS} != "Linux" && ${OPSYS} != "Interix"
MAKE_ENV+= IPV6=-DHAVE_IPV6
. endif
.endif