diff options
author | grant <grant@pkgsrc.org> | 2002-11-30 16:49:00 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-11-30 16:49:00 +0000 |
commit | a352f694c27aed43960316cf1abba26d4488185c (patch) | |
tree | 1fd28084c84c2b1b3cc694af85b1f4b37a355454 /mk | |
parent | f7de1f29c1ed67e3fae0003976db1114a8962fd2 (diff) | |
download | pkgsrc-a352f694c27aed43960316cf1abba26d4488185c.tar.gz |
turn on USE_INET6 in a KAME IPv6 environment other than NetBSD.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.prefs.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mk/bsd.prefs.mk b/mk/bsd.prefs.mk index a1c6ca6281b..5a06d060504 100644 --- a/mk/bsd.prefs.mk +++ b/mk/bsd.prefs.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.prefs.mk,v 1.91 2002/11/17 22:35:23 grant Exp $ +# $NetBSD: bsd.prefs.mk,v 1.92 2002/11/30 16:49:00 grant Exp $ # # Make file, included to get the site preferences, if any. Should # only be included by package Makefiles before any .if defined() @@ -189,12 +189,15 @@ SHAREMODE?= ${DOCMODE} @${FALSE} .endif -# if the system is IPv6-ready NetBSD, compile with IPv6 support turned on. +# if the system is IPv6-ready, compile with IPv6 support turned on. .if (${OPSYS} == "NetBSD") && !defined(USE_SOCKS) && \ exists(/usr/include/netinet6) USE_INET6?= YES .elif ${OPSYS} == "SunOS" && exists(/usr/include/netinet/ip6.h) USE_INET6?= YES +# other KAME +.elif exists(/usr/include/netinet6) +USE_INET6?= YES .else USE_INET6?= NO .endif |