diff options
author | seb <seb> | 2003-03-23 19:16:48 +0000 |
---|---|---|
committer | seb <seb> | 2003-03-23 19:16:48 +0000 |
commit | d65017c2fab5dc320e16d6998d4c5241d6ee27b3 (patch) | |
tree | 4cfb4169f776c743af3e1d695121d11f5e32d2b2 | |
parent | 6a0a25a9007e6fffddf0215cf67d78573c869ce2 (diff) | |
download | pkgsrc-d65017c2fab5dc320e16d6998d4c5241d6ee27b3.tar.gz |
Cvs' IPv6 patch does not like Solaris 8's getaddrinfo().
So disable IPv6 support on this system.
-rw-r--r-- | devel/cvs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/cvs/Makefile b/devel/cvs/Makefile index 9e9d40998ef..686fa4ef046 100644 --- a/devel/cvs/Makefile +++ b/devel/cvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.60 2003/03/18 15:29:48 grant Exp $ +# $NetBSD: Makefile,v 1.61 2003/03/23 19:16:48 seb Exp $ # DISTNAME= cvs-1.11.5 @@ -18,7 +18,7 @@ GNU_CONFIGURE= yes BUILD_DEFS+= USE_INET6 USE_BUILDLINK2= yes -.if defined(USE_INET6) && ${USE_INET6} == "YES" +.if defined(USE_INET6) && ${USE_INET6} == "YES" && empty(MACHINE_PLATFORM:MSunOS-5.8-*) CONFIGURE_ARGS+= --enable-ipv6 PATCH_SITES= ftp://ftp.kame.net/pub/kame/misc/ PATCHFILES= cvs-1.11.4-v6-20030102.diff.gz |