Disable ipv6 on Tru64, configure complains about buggy getaddrinfo()

Closes PR pkg/42472. May want to revisit this later, though.
This commit is contained in:
tnn 2009-12-20 23:58:27 +00:00
parent a9841e8f40
commit 33ec9f2c1b
2 changed files with 12 additions and 2 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.21 2009/09/12 22:24:06 tron Exp $
# $NetBSD: Makefile,v 1.22 2009/12/20 23:58:27 tnn Exp $
DISTNAME= Python-2.5.4
PKGNAME= python25-2.5.4
@ -130,6 +130,11 @@ PLIST.no-nis= yes
. endif
.endif
.if ${OPSYS} == "OSF1"
# configure complains about buggy getaddrinfo()
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(BUILDLINK_TRANSFORM)
MAKE_ENV+= PY_BDB_TRANSFORM=${BUILDLINK_TRANSFORM:Q}
.endif

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.15 2009/11/16 21:12:05 jakllsch Exp $
# $NetBSD: Makefile,v 1.16 2009/12/20 23:58:27 tnn Exp $
DISTNAME= Python-2.6.4
PKGNAME= ${DISTNAME:S/Python/python26/}
@ -139,6 +139,11 @@ PLIST.no-nis= yes
. endif
.endif
.if ${OPSYS} == "OSF1"
# configure complains about buggy getaddrinfo()
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(BUILDLINK_TRANSFORM)
MAKE_ENV+= PY_BDB_TRANSFORM=${BUILDLINK_TRANSFORM:Q}
.endif