summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortnn <tnn>2009-12-20 23:58:27 +0000
committertnn <tnn>2009-12-20 23:58:27 +0000
commitf1ad0170abb685355605b6074418020eefbdf672 (patch)
tree6a507158fd89775cb42cd1f408fe5f7b5504f922 /lang
parent628dbcf5bc3b541645c58bbf451bdc68dd090f7d (diff)
downloadpkgsrc-f1ad0170abb685355605b6074418020eefbdf672.tar.gz
Disable ipv6 on Tru64, configure complains about buggy getaddrinfo()
Closes PR pkg/42472. May want to revisit this later, though.
Diffstat (limited to 'lang')
-rw-r--r--lang/python25/Makefile7
-rw-r--r--lang/python26/Makefile7
2 files changed, 12 insertions, 2 deletions
diff --git a/lang/python25/Makefile b/lang/python25/Makefile
index f561441cdf7..c1446ef548c 100644
--- a/lang/python25/Makefile
+++ b/lang/python25/Makefile
@@ -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
diff --git a/lang/python26/Makefile b/lang/python26/Makefile
index 092b207f8c2..d6b8d8fa3ef 100644
--- a/lang/python26/Makefile
+++ b/lang/python26/Makefile
@@ -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