summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2003-02-06 21:02:58 +0000
committerdrochner <drochner@pkgsrc.org>2003-02-06 21:02:58 +0000
commit9c8fa58fc721830cbafcd09f315fdaed864c597a (patch)
treee9407c6203083ae21b6630b9f1883070885829fc
parent4137dbc49a4a5475bc2b8e56839aee94fba0c92b (diff)
downloadpkgsrc-9c8fa58fc721830cbafcd09f315fdaed864c597a.tar.gz
revert previous, adding some comments
Before using native pthreads per default, we should make sure it is at least stable enough for the Python selftests and pkgsrc applications. (in response to PR pkg/20214)
-rw-r--r--lang/python22/Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/lang/python22/Makefile b/lang/python22/Makefile
index c4e2277903f..214d21969c5 100644
--- a/lang/python22/Makefile
+++ b/lang/python22/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2003/01/20 22:23:38 jdolecek Exp $
+# $NetBSD: Makefile,v 1.12 2003/02/06 21:02:58 drochner Exp $
#
DISTNAME= Python-2.2.2
@@ -26,7 +26,12 @@ PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS}
PLIST_SUBST+= PY_PLATNAME=${LOWER_OPSYS}${OS_VERSION:C/\..*//}
.endif
-.if (${OPSYS} == "NetBSD") && !exists(/usr/include/pthread.h)
+.if ${OPSYS} == "NetBSD"
+# XXX We'll enable native threads (if available) as soon as it is
+# stable enough. Remaining issues:
+# -stack size too small in main thread
+# -PR lib/20214 (libpthread assertion failure triggered by py-bsddb3)
+# -"test_gettext" in Python autotest hanging forever
CONFIGURE_ARGS+= --without-threads
.endif