diff options
Diffstat (limited to 'lang/python22')
-rw-r--r-- | lang/python22/Makefile | 9 |
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 |