diff options
author | obache <obache@pkgsrc.org> | 2011-02-06 08:39:59 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2011-02-06 08:39:59 +0000 |
commit | 705909d2dd90323b21620d899564db097723fdb0 (patch) | |
tree | 8479fe78998c236c9a104909c48e556a2e843513 /security/tcp_wrappers | |
parent | 35da9a4186c1696ca02e714e39329efc58e93344 (diff) | |
download | pkgsrc-705909d2dd90323b21620d899564db097723fdb0.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/Makefile | 4 |
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 |