diff options
author | drochner <drochner> | 2003-02-06 21:02:58 +0000 |
---|---|---|
committer | drochner <drochner> | 2003-02-06 21:02:58 +0000 |
commit | e06b12e9279d517612eb07fef2820179054094e1 (patch) | |
tree | e9407c6203083ae21b6630b9f1883070885829fc /lang/python22 | |
parent | cf54277ad5dedeb0701ae1ba6350251a1736d66e (diff) | |
download | pkgsrc-e06b12e9279d517612eb07fef2820179054094e1.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)
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 |