diff options
author | grant <grant> | 2004-06-17 12:59:11 +0000 |
---|---|---|
committer | grant <grant> | 2004-06-17 12:59:11 +0000 |
commit | e68bd80aed0ab71bb23b2475c419c21202a82480 (patch) | |
tree | 355cdba12a31519e85e78b10930fa040a12392c3 /mail | |
parent | 31ecb3a9bfd5f3a47492074e378e8cdfcfcb1463 (diff) | |
download | pkgsrc-e68bd80aed0ab71bb23b2475c419c21202a82480.tar.gz |
disable IPv6 on Solaris because this package thinks getaddrinfo is
broken and doesn't build:
checking whether to enable ipv6... yes
checking ipv6 stack type... unknown
checking getaddrinfo bug... buggy
Fatal: You must get working getaddrinfo() function.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/cue/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/cue/Makefile b/mail/cue/Makefile index 26c2bde39ad..ee7fb7910b4 100644 --- a/mail/cue/Makefile +++ b/mail/cue/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2004/05/07 05:05:57 itojun Exp $ +# $NetBSD: Makefile,v 1.37 2004/06/17 12:59:11 grant Exp $ DISTNAME= cue-snap-20040426 PKGNAME= cue-20040426 @@ -15,7 +15,8 @@ USE_BUILDLINK3= yes BUILD_DEFS+= USE_INET6 USE_IDEA CUE_USE_CANNA -.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss]) +.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss]) && \ + ${OPSYS} != "SunOS" CONFIGURE_ARGS+= --enable-ipv6 .else CONFIGURE_ARGS+= --disable-ipv6 |